1QB_ATOMIC_INT_GET(3) libqb Programmer's Manual QB_ATOMIC_INT_GET(3)
2
3
4
6 qb_atomic_int_get - Reads the value of the integer pointed to by
7 atomic.
8
10 #include <qb/qbatomic.h>
11
12 int32_t qb_atomic_int_get(
13 volatile int32_t QB_GNUC_MAY_ALIAS *atomic
14 );
15
17 atomic a pointer to an integer
18
20 Also acts as a memory barrier.
21
23 the value of atomic
24
26 qb_atomic_int_set(3), qb_atomic_int_compare_and_exchange(3),
27 qb_atomic_int_add(3), qb_atomic_init(3), qb_atomic_pointer_get(3),
28 qb_atomic_int_exchange_and_add(3),
29 qb_atomic_pointer_compare_and_exchange(3), qb_atomic_pointer_set(3)
30
32 Copyright (C) 2010-2020 Red Hat, Inc. All rights reserved.
33
34
35
36LIBQB 2020-07-30 QB_ATOMIC_INT_GET(3)