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

mtx_unlock函数


概要:
#include <threads.h>
int mtx_unlock(mtx_t *mtx);

描述:

该函数解锁参数mtx指向的互斥。参数mtx指向的互斥应被调用线程加锁。


参数:
mtx_t *mtx

指向将被解锁的互斥的指针。


返回值:

如果成功解锁互斥,函数返回thrd_success;如果不能成功解锁互斥,函数返回thrd_error


范例:
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_unlock范例*/

#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);
    }

    return 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 error");
        exit(EXIT_FAILURE);
    }

    /*创建线程。*/
    for(int i=0; i<SIZE; ++i)
    {
        if(thrd_create((threadId+i), func, (data+i)) != thrd_success)
        {
            perror("thrd_create error");
            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_lock 加锁互斥的函数。
mtx_timedlock 支持超时加锁互斥的函数。
mtx_destroy 销毁互斥的函数。
mtx_trylock 尝试加锁互斥的函数。
mtx_init 创建互斥的函数。