MOS Source Code
|
#include "mos/mm/slab.h"
#include <mos/lib/structures/list.h>
#include <mos/lib/sync/spinlock.h>
#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 | |
__BEGIN_DECLS 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) |
Variables | |
slab_t * | waitlist_slab |
#define waitlist_wake_one | ( | list | ) |
#define waitlist_wake_all | ( | list | ) |
Definition at line 40 of file wait.h.
Referenced by ipc_server_accept(), ipc_server_close(), and ipc_server_create().
__BEGIN_DECLS void waitlist_init | ( | waitlist_t * | list | ) |
Definition at line 23 of file wait.c.
Referenced by console_register(), futex_wait(), ipc_connect_to_server(), ipc_server_close(), ipc_server_create(), pipe_create(), process_allocate(), process_do_fork(), and thread_allocate().
__nodiscard bool waitlist_append | ( | waitlist_t * | list | ) |
Definition at line 29 of file wait.c.
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 45 of file wait.c.
Referenced by console_putc(), futex_wake(), ipc_connect_to_server(), pipe_close_one_end(), pipe_read(), pipe_write(), process_exit(), and thread_exit_locked().
void waitlist_close | ( | waitlist_t * | list | ) |
Definition at line 76 of file wait.c.
Referenced by ipc_server_close(), ipc_server_create(), and thread_exit_locked().
void waitlist_remove_me | ( | waitlist_t * | waitlist | ) |
Definition at line 86 of file wait.c.
Referenced by ipc_server_accept(), and process_wait_for_pid().
|
extern |
Definition at line 17 of file wait.c.
Referenced by ipc_connect_to_server().