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

atomic_is_lock_free函数


概要:
#include <stdatomic.h>
_Bool atomic_is_lock_free(const volatile A *obj);

描述:

该泛型函数指示对参数obj指向类型的对象进行原子操作是否是锁无关的。

对于任何给定的程序,锁无关查询的结果对于所有相同类型的指针都应该是一致的。


参数:
const volatile A *obj

指向原子类型对象的指针。


返回值:

如果对参数obj指向类型的对象进行原子操作是锁无关的,函数返回非0值(true);否则函数返回0false)。


范例:
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 
/*函数atomic_is_lock_free范例*/

#ifdef __STDC_NO_ATOMICS__
#error "Implementation does not support atomic types."
#endif

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

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

atomic_int aNumber;

/*新线程中执行的函数。*/
int func(void *arg)
{
    if(atomic_is_lock_free(&aNumber))
        puts("atomic_int is lock-free.");
    else
        puts("atomic_int is not lock-free.");

    thrd_exit(0);
}

int main(void)
{
    thrd_t threadId;

    if(thrd_create(&threadId, func, NULL) != thrd_success)
    {
        perror("thrd_create error");
        exit(EXIT_FAILURE);
    }

    thrd_join(threadId, NULL);
    
    return 0;
}


输出:

atomic_int is lock-free.

注:使用Pelles C编译。


相关内容:
ATOMIC_BOOL_LOCK_FREE 表示_Bool类型锁无关属性的宏。
ATOMIC_CHAR_LOCK_FREE 表示char类型锁无关属性的宏。
ATOMIC_CHAR16_T_LOCK_FREE 表示char16_t类型锁无关属性的宏。
ATOMIC_CHAR32_T_LOCK_FREE 表示char32_t类型锁无关属性的宏。
ATOMIC_WCHAR_T_LOCK_FREE 表示wchar_t类型锁无关属性的宏。
ATOMIC_SHORT_LOCK_FREE 表示short类型锁无关属性的宏。
ATOMIC_INT_LOCK_FREE 表示int类型锁无关属性的宏。
ATOMIC_LONG_LOCK_FREE 表示long类型锁无关属性的宏。
ATOMIC_LLONG_LOCK_FREE 表示llong类型锁无关属性的宏。
ATOMIC_POINTER_LOCK_FREE 表示指针锁无关属性的宏。