diff --git a/doc/go1.13.html b/doc/go1.13.html index 939299c90e..a075d9f731 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -337,7 +337,7 @@ TODO
sync

- Large sync.Pool no longer increase stop-the-world pause times. + Large Pool no longer increase stop-the-world pause times.

@@ -350,15 +350,19 @@ TODO

syscall

- TODO: https://golang.org/cl/168479: avoid _getdirentries64 on darwin + Uses of _getdirentries64 have been removed from Darwin builds, to allow binaries + built with 1.12 to be uploaded to the macOS App Store.

- TODO: https://golang.org/cl/174197: allow setting security attributes on processes + The new ProcessAttributes and ThreadAttributes fields in + SysProcAttr have been introduced for Windows, + exposing security settings when creating new processes.

- TODO: https://golang.org/cl/174320: don't return EINVAL on zero Chmod mode on Windows + EINVAL is no longer returned in zero + Chmod mode on Windows.

@@ -366,7 +370,9 @@ TODO
syscall/js

- TODO: https://golang.org/cl/177537: replace TypedArrayOf with CopyBytesToGo/CopyBytesToJS + TypedArrayOf has been replaced by + CopyBytesToGo and + CopyBytesToJS for copying bytes between a byte slice and a Uint8Array.