From: Katie Hockman Date: Wed, 12 Jun 2019 17:54:50 +0000 (-0400) Subject: doc: release notes for syscall and syscall/js X-Git-Tag: go1.13beta1~71 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f18aeb3a54bf4490af68047e31d6cca8cb845297;p=gostls13.git doc: release notes for syscall and syscall/js Change-Id: I0ee4b4f0211cd12803ab33976669350d9dd615f3 Reviewed-on: https://go-review.googlesource.com/c/go/+/181944 Reviewed-by: Andrew Bonventre --- 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.