ALPHA 3.0.0 - Added Inter-Process Communication and fixed the bug where the shell would continue taking in input when a command was still running.

This commit is contained in:
WahPlus
2025-08-21 21:03:17 +03:00
parent 5276d2437b
commit ef0ffa1886
10 changed files with 208 additions and 73 deletions
+6 -7
View File
@@ -1,7 +1,6 @@
local cor = coroutine.create(function()
print("Hello World!")
end)
print(coroutine.status(cor))
coroutine.resume(cor)
print(coroutine.status(cor))
local pid = tsched.getCurrentTask().id
local shareTable = ipc.shareWith(pid)
shareTable.gabbagool = "Pigeon Pizza! Wow!"
print(shareTable.gabbagool)
print(pid)
print(ipc.shared[pid].gabbagool)