mirror of
https://github.com/golang/go
synced 2024-11-02 08:01:26 +00:00
os: document that StartProcess puts files into blocking mode
Fixes #43894 Change-Id: I2add7b8a4f6ae69a5ef1c48703fde21a4b74307c Reviewed-on: https://go-review.googlesource.com/c/go/+/321852 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
This commit is contained in:
parent
e4d7525c3e
commit
76b2d6afed
1 changed files with 3 additions and 0 deletions
|
@ -54,6 +54,9 @@ type ProcAttr struct {
|
||||||
// standard error. An implementation may support additional entries,
|
// standard error. An implementation may support additional entries,
|
||||||
// depending on the underlying operating system. A nil entry corresponds
|
// depending on the underlying operating system. A nil entry corresponds
|
||||||
// to that file being closed when the process starts.
|
// to that file being closed when the process starts.
|
||||||
|
// On Unix systems, StartProcess will change these File values
|
||||||
|
// to blocking mode, which means that SetDeadline will stop working
|
||||||
|
// and calling Close will not interrupt a Read or Write.
|
||||||
Files []*File
|
Files []*File
|
||||||
|
|
||||||
// Operating system-specific process creation attributes.
|
// Operating system-specific process creation attributes.
|
||||||
|
|
Loading…
Reference in a new issue