1atomic_or(3C)            Standard C Library Functions            atomic_or(3C)
2
3
4

NAME

6       atomic_or,       atomic_or_8,       atomic_or_uchar,      atomic_or_16,
7       atomic_or_ushort,   atomic_or_32,   atomic_or_uint,    atomic_or_ulong,
8       atomic_or_64,   atomic_or_8_nv,   atomic_or_uchar_nv,  atomic_or_16_nv,
9       atomic_or_ushort_nv,        atomic_or_32_nv,         atomic_or_uint_nv,
10       atomic_or_ulong_nv, atomic_or_64_nv - atomic OR operations
11

SYNOPSIS

13       #include <atomic.h>
14
15       void atomic_or_8(volatile uint8_t *target, uint8_t bits);
16
17
18       void atomic_or_uchar(volatile uchar_t *target, uchar_t bits);
19
20
21       void atomic_or_16(volatile uint16_t *target, uint16_t bits);
22
23
24       void atomic_or_ushort(volatile ushort_t *target, ushort_t bits);
25
26
27       void atomic_or_32(volatile uint32_t *target, uint32_t bits);
28
29
30       void atomic_or_uint(volatile uint_t *target, uint_t bits);
31
32
33       void atomic_or_ulong(volatile ulong_t *target, ulong_t bits);
34
35
36       void atomic_or_64(volatile uint64_t *target, uint64_t bits);
37
38
39       uint8_t atomic_or_8_nv(volatile uint8_t *target, uint8_t bits);
40
41
42       uchar_t atomic_or_uchar_nv(volatile uchar_t *target, uchar_t bits);
43
44
45       uint16_t atomic_or_16_nv(volatile uint16_t *target, uint16_t bits);
46
47
48       ushort_t atomic_or_ushort_nv(volatile ushort_t *target, ushort_t bits);
49
50
51       uint32_t atomic_or_32_nv(volatile uint32_t *target, uint32_t bits);
52
53
54       uint_t atomic_or_uint_nv(volatile uint_t *target, uint_t bits);
55
56
57       ulong_t atomic_or_ulong_nv(volatile ulong_t *target, ulong_t bits);
58
59
60       uint64_t atomic_or_64_nv(volatile uint64_t *target, uint64_t bits);
61
62

DESCRIPTION

64       These  functions  enable the the bitwise OR of bits to the value stored
65       in target to occur in an atomic manner.
66

RETURN VALUES

68       The *_nv() variants of these functions return the new value of target.
69

ERRORS

71       No errors are defined.
72

ATTRIBUTES

74       See attributes(5) for descriptions of the following attributes:
75
76
77
78
79       ┌─────────────────────────────┬─────────────────────────────┐
80       │      ATTRIBUTE TYPE         │      ATTRIBUTE VALUE        │
81       ├─────────────────────────────┼─────────────────────────────┤
82       │Interface Stability          │Stable                       │
83       ├─────────────────────────────┼─────────────────────────────┤
84       │MT-Level                     │MT-Safe                      │
85       └─────────────────────────────┴─────────────────────────────┘
86

SEE ALSO

88       atomic_add(3C),   atomic_and(3C),   atomic_bits(3C),    atomic_cas(3C),
89       atomic_dec(3C),    atomic_inc(3C),   atomic_swap(3C),   membar_ops(3C),
90       attributes(5), atomic_ops(9F)
91

NOTES

93       The *_nv() variants are substantially more expensive on some  platforms
94       than the versions that do not return values. Do not use them unless you
95       need to know the new value atomically.
96
97
98
99SunOS 5.11                        13 May 2005                    atomic_or(3C)
Impressum