Skip to content

Commit 034d234

Browse files
committed
Update docs for atomic ptr
1 parent 48e0725 commit 034d234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/atomics.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ else
2424
end
2525
const floattypes = (Float16, Float32, Float64)
2626
const arithmetictypes = (inttypes..., floattypes..., Ptr)
27-
# TODO: Support Ptr
2827
const atomictypes = (arithmetictypes..., Bool)
2928
const IntTypes = Union{inttypes...}
3029
const FloatTypes = Union{floattypes...}
@@ -39,7 +38,8 @@ accessed atomically, i.e. in a thread-safe manner.
3938
4039
Only certain "simple" types can be used atomically, namely the
4140
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.
4343
4444
New atomic objects can be created from a non-atomic values; if none is
4545
specified, the atomic object is initialized with zero.

0 commit comments

Comments
 (0)