diff --git a/doc/go1.19.html b/doc/go1.19.html index be313f0f3b5593..e7387268ba5541 100644 --- a/doc/go1.19.html +++ b/doc/go1.19.html @@ -107,10 +107,34 @@

Linker

TODO: complete this section, or delete if not needed

+

Core library

+ +

New atomic types

+

+ 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

+

Minor changes to the library

As always, there are various minor changes and updates to the library,