summaryrefslogtreecommitdiff
path: root/libgo/go/os/doc.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/os/doc.go')
-rw-r--r--libgo/go/os/doc.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/libgo/go/os/doc.go b/libgo/go/os/doc.go
index a954e313d1..389a8eb14c 100644
--- a/libgo/go/os/doc.go
+++ b/libgo/go/os/doc.go
@@ -39,11 +39,14 @@ func (p *Process) Kill() error {
// Wait waits for the Process to exit, and then returns a
// ProcessState describing its status and an error, if any.
// Wait releases any resources associated with the Process.
+// On most operating systems, the Process must be a child
+// of the current process or an error will be returned.
func (p *Process) Wait() (*ProcessState, error) {
return p.wait()
}
// Signal sends a signal to the Process.
+// Sending Interrupt on Windows is not implemented.
func (p *Process) Signal(sig Signal) error {
return p.signal(sig)
}