Last active
August 29, 2015 14:18
-
-
Save guicho271828/8243c67e4e5a28cbea1e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef union | |
{ | |
struct | |
{ | |
int __lock; | |
unsigned int __futex; | |
unsigned long long int __total_seq; | |
unsigned long long int __wakeup_seq; | |
unsigned long long int __woken_seq; | |
void *__mutex; | |
unsigned int __nwaiters; | |
unsigned int __broadcast_seq; | |
} __data; | |
char __size[48]; | |
long long int __align; | |
} pthread_cond_t; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(cffi:defcunion pthread_cond_t | |
(__data (:struct ???)) | |
(__size :char :count 48) | |
(__align (:long :long :int))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment