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
Currently allocation and freeing methods are not 'thread-safe'. When more than processes/threads of execution, can calls the PMM methods, the output is not deterministic and dangerous.
Pages can be allocated more than once (interrupting one allocation/free, another instance of allocation/free can run and allocate the same pages twice).
Race condition.
Tasks
Consider implementation of Mutex
The text was updated successfully, but these errors were encountered:
Description
Currently allocation and freeing methods are not 'thread-safe'. When more than processes/threads of execution, can calls the PMM methods, the output is not deterministic and dangerous.
Tasks
The text was updated successfully, but these errors were encountered: