Comment by tayistay Comment by tayistay 2 days ago 1 reply Copy Link View on Hacker News Can I call into the interpreter from multiple threads or does it use global state?
Copy Link briancr 2 days ago Collapse Comment - There’s no multithreading capability built into Cicada. So a given instance of the interpreter only has a single concurrent state, and all C callbacks share memory with that global state. Multithreading would require a C-based thread manager. Reply View | 0 replies
There’s no multithreading capability built into Cicada. So a given instance of the interpreter only has a single concurrent state, and all C callbacks share memory with that global state. Multithreading would require a C-based thread manager.