pthread_t

类型定义:
  typedef unsigned long int pthread_t;
  //come from /usr/include/bits/pthread.h
  用途:pthread_t用于声明线程ID。
  sizeof (pthread_t) =4;

你可能感兴趣的:(线程ID,pthread_t)