github.com/notti/go-dynamic@v0.0.0-20190619201224-fc443047424c/steps/3_goffi/size/pthread.c (about)

     1  #include <pthread.h>
     2  #include <stdio.h>
     3  #include <time.h>
     4  #include <signal.h>
     5  
     6  int main(int argc, char *argv[]) {
     7  	printf("%d %d %d %d %d\n", sizeof(struct timespec), sizeof(sigset_t), sizeof(pthread_t), sizeof(pthread_attr_t), sizeof(size_t));
     8  	return 0;
     9  }