REF: Renamed kernel -> System; userspace -> Runtime; bootloader -> Boot

del: KSH
This commit is contained in:
Karina
2026-04-04 19:44:39 +04:00
parent 2f58f64175
commit 47735bb1bd
117 changed files with 10 additions and 274 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <termOS.h>
int main() {
for (int i = 0; i < 100; i++) {
UInt64 pid = ProcessSpawn("/System/CoreServices/debug");
if (pid < 0) {
ConsolePrint("[PIDSPAMMER] Error %d\n", pid);
} else {
ConsolePrint("[PIDSPAMMER] %d spawned\n", pid);
}
}
}