MOS Source Code
Loading...
Searching...
No Matches
futex.h
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-3.0-or-later
2
3#pragma once
4
5#include <mos/types.h>
6
7bool futex_wait(futex_word_t *futex, futex_word_t expected);
8bool futex_wake(futex_word_t *lock, size_t num_to_wake);
#define futex_wake(futex, val)
Definition mutex.c:10
#define futex_wait(futex, val)
Definition mutex.c:9
s32 futex_word_t
Definition types.h:99