Replies: 2 comments
|
Yes, returning means when the function BLOCK returns. You can read the full implementation of the process world in medley/sources/PROC, but here's the definition of BLOCK: |
0 replies
|
There isn't a general purpose preemptive scheduler. A process retains control until it BLOCKs. Medley isn't thread-safe in its implementation, and so arbitrary interrupts will result in crashes and RAID calls. access to DSK and UNIX doesn't usually block, but accesses to network file systems will. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
From the IRM entry for function
BLOCK:Does "returning" mean function
BLOCKreturning? When does the function yield control, exactly? At the beginning of the call or when returning?All reactions