diff --git a/doc/go1.17.html b/doc/go1.17.html index 771e2a6c8d..194d3a0cd8 100644 --- a/doc/go1.17.html +++ b/doc/go1.17.html @@ -550,11 +550,16 @@ Do not send CLs removing the interior tags from such phrases.
- TODO: https://golang.org/cl/295371: do not overflow key memory in GetQueuedCompletionStatus +
+ The GetQueuedCompletionStatus and
+ PostQueuedCompletionStatus
+ functions are now deprecated. These functions have incorrect signatures and are superseded by
+ equivalents in the golang.org/x/sys/windows package.
- TODO: https://golang.org/cl/313653: restore signal mask after setting foreground process group
+ On Unix-like systems, the process group of a child process is now set with signals blocked.
+ This avoids sending a SIGTTOU to the child when the parent is in a background process group.