![]() |
MOS Source Code
|
#include <mos/allocator.hpp>
#include <mos/lib/structures/list.hpp>
#include <mos/lib/sync/spinlock.hpp>
#include <mos/mos_global.h>
Go to the source code of this file.
Classes | |
struct | waitable_list_entry_t |
The entry in the waiters list of a process, or a thread. More... | |
struct | waitlist_t |
Macros | |
#define | waitlist_wake_one(list) |
#define | waitlist_wake_all(list) |
Functions | |
void | waitlist_init (waitlist_t *list) |
__nodiscard bool | waitlist_append (waitlist_t *list) |
size_t | waitlist_wake (waitlist_t *list, size_t max_wakeups) |
void | waitlist_close (waitlist_t *list) |
void | waitlist_remove_me (waitlist_t *waitlist) |
#define waitlist_wake_one | ( | list | ) |
#define waitlist_wake_all | ( | list | ) |
Definition at line 34 of file wait.hpp.
Referenced by ipc_server_accept(), ipc_server_close(), and ipc_server_create().
void waitlist_init | ( | waitlist_t * | list | ) |
Definition at line 15 of file wait.cpp.
Referenced by Console::Console(), console_register(), futex_wait(), ipc_connect_to_server(), ipc_server_close(), IPCServer::IPCServer(), pipe_create(), Process::Process(), process_do_fork(), thread_allocate(), and waitlist_t::waitlist_t().
__nodiscard bool waitlist_append | ( | waitlist_t * | list | ) |
Definition at line 21 of file wait.cpp.
Referenced by ipc_connect_to_server(), ipc_server_accept(), and reschedule_for_waitlist().
size_t waitlist_wake | ( | waitlist_t * | list, |
size_t | max_wakeups ) |
Definition at line 37 of file wait.cpp.
Referenced by futex_wake(), ipc_connect_to_server(), pipe_close_one_end(), pipe_read(), pipe_write(), process_exit(), Console::putc(), and thread_exit_locked().
void waitlist_close | ( | waitlist_t * | list | ) |
Definition at line 68 of file wait.cpp.
Referenced by ipc_server_close(), ipc_server_create(), and thread_exit_locked().
void waitlist_remove_me | ( | waitlist_t * | waitlist | ) |
Definition at line 78 of file wait.cpp.
Referenced by ipc_server_accept(), and process_wait_for_pid().