diff --git a/doc/go1.19.html b/doc/go1.19.html index be313f0f3b..e7387268ba 100644 --- a/doc/go1.19.html +++ b/doc/go1.19.html @@ -107,10 +107,34 @@ Do not send CLs removing the interior tags from such phrases.
TODO: complete this section, or delete if not needed
+
+ The sync/atomic package defines new atomic types
+ Bool,
+ Int32,
+ Int64,
+ Uint32,
+ Uint64,
+ Uintptr, and
+ Pointer.
+ These types hide the underlying values so that all accesses are forced to use
+ the atomic APIs.
+ Pointer also avoids
+ the need to convert to
+ unsafe.Pointer at call sites.
+ Int64 and
+ Uint64 automatically
+ receive 64-bit alignment on ARM, 386, and 32-bit MIPS required for 64-bit
+ atomics on these systems.
+
TODO: complete this section
+As always, there are various minor changes and updates to the library,