2019-11-07 22:52:23 -08:00
|
|
|
pub const pthread_mutex_t = extern struct {
|
2019-12-05 10:20:38 -08:00
|
|
|
inner: usize = ~@as(usize, 0),
|
2019-11-07 22:52:23 -08:00
|
|
|
};
|
|
|
|
pub const pthread_cond_t = extern struct {
|
2019-12-05 10:20:38 -08:00
|
|
|
inner: usize = ~@as(usize, 0),
|
2019-11-07 22:52:23 -08:00
|
|
|
};
|