pthread_mutexattr_gettype () 函数从互斥属性对象attr获取属性type。 互斥属性对象允许您管理应用程序中互斥对象的特征。 它定义在创建互斥对象期间要用于该互斥对象的值集。 通过建立互斥属性对象,您可以创建许多具有相同特征集的互斥对象,而无需为每个互斥对象定义特征。
pthread_mutexattr_gettype 和pthread_mutexattr_settype 子例程分别获取并设置互斥对象类型属性。 此属性在这些子例程的 type 参数中设置。 type 属性的缺省值为 PTHREAD_MUTEX_DEFAULT。 互斥对象的类型包含在互斥对象属性的类型属性中。 有效互斥类型包括: 项描述 PTHREAD_MUTEX_NORMAL 此类型的互斥检测不到死锁。
pthread_mutexattr_gettype(3T)は、pthread_mutexattr_settype()によって設定された、mutex の型 (type) 属性を取得します。型属性のデフォルト値はPTHREAD_MUTEX_DEFAULTです。 型(type) 引数は mutex の型を指定します。有効な mutex 型を以下に示します。
pthread_mutexattr_gettype : get一个mutex属性类型! pthread_mutexattr_settype : set一个mutex属性类型! pthread_mutexattr_destroy :销毁一个 mutex 属性! pthread_mutexattr_init :初始化一个 mutex 属性! #include <pthread.h>intpthread_mutexattr_gettype(constpthread_mutexattr_t *attr,int*type);intpthr...
#include <pthread.h> int pthread_mutexattr_gettype(pthread_mutexattr_t *restrictattr, int *restricttype); The default value of thetypeattribute isPTHREAD_MUTEX_DEFAULT. Thetypeargument specifies the type of mutex. Valid mutex types include ...
#define _OPEN_THREADS #include <pthread.h> int pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *type); SUSV3: #define _UNIX03_THREADS #include <pthread.h> int pthread_mutexattr_gettype(const pthread_mutexattr_t * __restrict__attr, int * __restrict__type); ...
pthread_mutexattr_gettype() 関数は、mutex 属性オブジェクト attr から属性 type を取得します。 mutex 属性オブジェクトを使用すると、アプリケーションの mutex の特性を管理することができます。これは、生成時に mutex に使用される一連の値を定義します。mutex 属性オブジェクトを確立す...
Richiama o imposta un tipo mutex. Libreria Libreria thread (libthreads.a) Sintassi #include <pthread.h>int pthread_mutexattr_gettype (attr,type)const pthread_mutexattr_t *attr;int *type;int pthread_mutexattr_settype (attr,type)pthread_mutexattr_t *attr;inttype; ...