mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
16 lines
412 B
C
16 lines
412 B
C
|
#ifndef COSMOPOLITAN_THIRD_PARTY_GDTOA_LOCK_H_
|
||
|
#define COSMOPOLITAN_THIRD_PARTY_GDTOA_LOCK_H_
|
||
|
#include "libc/thread/thread.h"
|
||
|
COSMOPOLITAN_C_START_
|
||
|
|
||
|
extern pthread_mutex_t __gdtoa_lock_obj;
|
||
|
extern pthread_mutex_t __gdtoa_lock1_obj;
|
||
|
|
||
|
void __gdtoa_lock(void);
|
||
|
void __gdtoa_unlock(void);
|
||
|
void __gdtoa_lock1(void);
|
||
|
void __gdtoa_unlock1(void);
|
||
|
|
||
|
COSMOPOLITAN_C_END_
|
||
|
#endif /* COSMOPOLITAN_THIRD_PARTY_GDTOA_LOCK_H_ */
|