mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-23 05:42:29 +00:00
Add pthread attributes and other libc functions
This commit is contained in:
parent
d5c9308a43
commit
4339d9f15e
81 changed files with 1111 additions and 428 deletions
|
@ -22,6 +22,10 @@
|
|||
* Initializes mutex attr.
|
||||
* @return 0 on success, or error number on failure
|
||||
*/
|
||||
int(pthread_mutexattr_init)(pthread_mutexattr_t *attr) {
|
||||
return pthread_mutexattr_init(attr);
|
||||
int pthread_mutexattr_init(pthread_mutexattr_t *attr) {
|
||||
*attr = (pthread_mutexattr_t){
|
||||
PTHREAD_MUTEX_DEFAULT,
|
||||
PTHREAD_PROCESS_DEFAULT,
|
||||
};
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue