来自:https://www.sourceware.org/pthreads-win32/manual/pthread_mutex_init.html
pthread_mutex_t类型的变量也可以静态初始化,
那么,pthread_mutex_t的类型是什么?
答案 0 :(得分:8)
那是类型。下面的实现通常是一个结构,你可以查看头文件,如果你真的关心你正在使用的库的具体实现,但这些细节与使用它无关,你只关心{{1输入。
static
答案 1 :(得分:3)
从pthreadtypes.h开始,在我的Linux发行版中,它的定义非常清楚,作为union的typedef,定义如下:
/* Data structures for mutex handling. The structure of the attribute
type is not exposed on purpose. */
typedef union
{
struct __pthread_mutex_s
{
int __lock;
unsigned int __count;
int __owner;
/* KIND must stay at this position in the structure to maintain
binary compatibility. */
int __kind;
unsigned int __nusers;
__extension__ union
{
int __spins;
__pthread_slist_t __list;
};
} __data;
char __size[__SIZEOF_PTHREAD_MUTEX_T];
long int __align;
} pthread_mutex_t;
您希望将其用作定义类型,当然是pthread_mutex_t - 因为此类型会因操作系统/发行版等而异。
答案 2 :(得分:0)
pthread_mutex_t
是一种类型,因此它本身没有类型。如果你对这种类型的别名感到好奇,在我的机器上我有:
struct _opaque_pthread_mutex_t {
long __sig;
char __opaque[__PTHREAD_MUTEX_SIZE__];
};
然后
typedef struct _opaque_pthread_mutex_t __darwin_pthread_mutex_t;
最后:
typedef __darwin_pthread_mutex_t pthread_mutex_t;