1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:17:35 +00:00

Kernel: Propagate OOM conditions out of sys$futex

This commit is contained in:
Idan Horowitz 2022-07-13 09:29:51 +03:00 committed by Andreas Kling
parent 364f6a9bf0
commit 55c7496200
4 changed files with 20 additions and 21 deletions

View file

@ -82,7 +82,7 @@ enum class VeilState {
Locked,
};
using FutexQueues = HashMap<FlatPtr, RefPtr<FutexQueue>>;
using FutexQueues = HashMap<FlatPtr, NonnullRefPtr<FutexQueue>>;
struct LoadResult;