当前位置: C语言 -- 标准库 -- <threads.h> -- mtx_plain

mtx_plain枚举常量


概要:
    enum {
        mtx_plain = value,		//value值由实现定义。
        mtx_recursive = value,		//value值由实现定义。
        mtx_timed = value		//value值由实现定义。
     };

描述:

该枚举常量用作mtx_init函数的参数,用于创建一个简单的、非递归的互斥对象,该互斥对象不支持超时。


Pelles C编译器<threads.h>头文件中,互斥类型定义如下:

    enum {
        mtx_plain = 0x01,   
        mtx_timed = 0x02,     
        mtx_recursive = 0x10   
     };

范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
37 
38 
39 
40 
41 
42 
43 
44 
45 
46 
47 
48 
49 
50 
51 
52 
53 
54 
55 
56 
57 
58 
59 
60 
61 
62 
63 
64 
65 
/*枚举常量mtx_plain范例*/

#ifdef __STDC_NO_THREADS__
#error "Implementation does not support multi-threads."
#endif

#include <stdio.h>
#include <stdlib.h>
#include <threads.h>

#define COUNT 10000
#define SIZE 3

int number = 0;
mtx_t mutex;

/*在新线程中执行的函数。*/
int func(void *arg)
{
    for(int i=0; i<COUNT; ++i)
    {
        mtx_lock(&mutex);
        number += *((int *)arg);
        mtx_unlock(&mutex);
    }

    thrd_exit(0);
}

int main(void)
{
    thrd_t threadId[SIZE];
    int data[SIZE] = {2, 3, 4};

    /*初始化互斥。*/
    if(mtx_init(&mutex, mtx_plain) != thrd_success)
    {
        perror("mtx_init");
        exit(EXIT_FAILURE);
    }

    /*创建线程。*/
    for(int i=0; i<SIZE; ++i)
    {
        if(thrd_create((threadId+i), func, (data+i)) != thrd_success)
        {
            perror("thrd_create");
            exit(EXIT_FAILURE);
        }
    }

    /*连接线程。*/
    for(int i=0; i<SIZE; ++i)
    {
        thrd_join(threadId[i], NULL);
    }

    printf("number: %d\n", number);

    /*销毁互斥。*/
    mtx_destroy(&mutex);

    return 0;
}


输出:

number: 90000

注:使用Pelles C编译。


相关内容:
mtx_recursive 表示递归互斥的枚举常量。
mtx_timed 表示支持超时、非递归互斥的枚举常量。