ref: initramfs -> StartupVolume; /bin -> /System/CoreServices;

ref(Kernel/VM/Heap): malloc -> VMHeapAllocate; free -> VMHeapFree; realloc -> VMHeapResize
This commit is contained in:
Karina
2026-01-31 16:11:45 +04:00
parent c30d57d06e
commit ee67cef4f8
12 changed files with 58 additions and 77 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
// TODO: read .cfg and spawn what stated there
int main() {
while (1) {
Int32 pid = spawn("/bin/termosh");
Int32 pid = spawn("/System/CoreServices/termosh");
if (pid < 0) return pid;
wait(pid);
}