You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
260 B
C
13 lines
260 B
C
3 years ago
|
#ifndef H_MUTEX
|
||
|
#define H_MUTEX
|
||
|
|
||
|
// mutex operations (modifies data, no checks)
|
||
|
int mutex_create();
|
||
|
void mutex_lock(int mutex_id);
|
||
|
void mutex_unlock(int mutex_id);
|
||
|
void mutex_destroy(int mutex_id);
|
||
|
// mutex helpers
|
||
|
int mutex_is_locked(int mutex_id);
|
||
|
|
||
|
|
||
|
#endif
|