You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
While SMP isn't planned for a long while now, mutual exclusion will still be needed before task scheduling is added.
For example, say there were two processes. Process A allocates memory, but in the middle of malloc, its timeslice expires. Process B then also allocates memory. Without mutual exclusion, it's possible that both process A and process B might allocate the same block of memory.
The text was updated successfully, but these errors were encountered:
While SMP isn't planned for a long while now, mutual exclusion will still be needed before task scheduling is added.
For example, say there were two processes. Process A allocates memory, but in the middle of malloc, its timeslice expires. Process B then also allocates memory. Without mutual exclusion, it's possible that both process A and process B might allocate the same block of memory.
The text was updated successfully, but these errors were encountered: