mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:07:46 +00:00
LibPthread: Implement pthread_mutexattr_init() and _destroy()
This commit is contained in:
parent
eaab7f5672
commit
9ddfe694f2
2 changed files with 14 additions and 1 deletions
|
@ -65,7 +65,9 @@ typedef void* pthread_key_t;
|
|||
typedef void* pthread_once_t;
|
||||
typedef uint32_t pthread_mutex_t;
|
||||
typedef void* pthread_attr_t;
|
||||
typedef void* pthread_mutexattr_t;
|
||||
typedef struct __pthread_mutexattr_t {
|
||||
int type;
|
||||
} pthread_mutexattr_t;
|
||||
|
||||
typedef struct __pthread_cond_t {
|
||||
void* storage;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue