File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 24
24
end
25
25
const floattypes = (Float16, Float32, Float64)
26
26
const arithmetictypes = (inttypes... , floattypes... , Ptr)
27
- # TODO : Support Ptr
28
27
const atomictypes = (arithmetictypes... , Bool)
29
28
const IntTypes = Union{inttypes... }
30
29
const FloatTypes = Union{floattypes... }
@@ -39,7 +38,8 @@ accessed atomically, i.e. in a thread-safe manner.
39
38
40
39
Only certain "simple" types can be used atomically, namely the
41
40
primitive boolean, integer, and float-point types. These are `Bool`,
42
- `Int8`...`Int128`, `UInt8`...`UInt128`, and `Float16`...`Float64`.
41
+ `Int8`...`Int128`, `UInt8`...`UInt128`, and `Float16`...`Float64`.
42
+ Additionally, atomic operations on `Ptr` are also supported.
43
43
44
44
New atomic objects can be created from a non-atomic values; if none is
45
45
specified, the atomic object is initialized with zero.
You can’t perform that action at this time.
0 commit comments