summaryrefslogtreecommitdiffstats
path: root/doc/DetachPids.3
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2004-10-07 14:44:17 (GMT)
committerdkf <dkf@noemail.net>2004-10-07 14:44:17 (GMT)
commit36c2e6aa669535c3fe636baad2b2dfb734a6c9fd (patch)
tree2554bc56f705b4ab6f4a91f5f13a5f0c5871e69b /doc/DetachPids.3
parent0305008e69f989af7ec01022d48ac085c19636b6 (diff)
downloadtcl-36c2e6aa669535c3fe636baad2b2dfb734a6c9fd.zip
tcl-36c2e6aa669535c3fe636baad2b2dfb734a6c9fd.tar.gz
tcl-36c2e6aa669535c3fe636baad2b2dfb734a6c9fd.tar.bz2
Update the .AS macro definition and take advantage of it's new-found power.
FossilOrigin-Name: dcba7c799d5c4345dc2f465a5d8a137b364fe6cc
Diffstat (limited to 'doc/DetachPids.3')
-rw-r--r--doc/DetachPids.310
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/DetachPids.3 b/doc/DetachPids.3
index 818fb32..91535a9 100644
--- a/doc/DetachPids.3
+++ b/doc/DetachPids.3
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: DetachPids.3,v 1.3 2001/04/03 14:53:45 andreas_kupries Exp $
+'\" RCS: @(#) $Id: DetachPids.3,v 1.4 2004/10/07 14:44:32 dkf Exp $
'\"
.so man.macros
.TH Tcl_DetachPids 3 "" Tcl "Tcl Library Procedures"
@@ -21,18 +21,18 @@ Tcl_DetachPids, Tcl_ReapDetachedProcs, Tcl_WaitPid \- manage child processes in
\fBTcl_ReapDetachedProcs\fR()
.sp
Tcl_Pid
-\fBTcl_WaitPid\fR(\fIpid, statPtr, options\fR)
+\fBTcl_WaitPid\fR(\fIpid, statusPtr, options\fR)
.SH ARGUMENTS
-.AS int *statusPtr
+.AS Tcl_Pid *statusPtr out
.AP int numPids in
Number of process ids contained in the array pointed to by \fIpidPtr\fR.
.AP int *pidPtr in
Address of array containing \fInumPids\fR process ids.
.AP Tcl_Pid pid in
The id of the process (pipe) to wait for.
-.AP int* statPtr out
+.AP int *statusPtr out
The result of waiting on a process (pipe). Either 0 or ECHILD.
-.AP int options
+.AP int options in
The options controlling the wait. WNOHANG specifies not to wait when
checking the process.
.BE