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:
+6
-7
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user