rbb 99/04/26 10:22:33
Modified: docs threadproc.txt
Log:
update docs for create_processupdate docs for create_process
Revision Changes Path
1.6 +2 -2 apache-apr/docs/threadproc.txt
Index: threadproc.txt
===================================================================
RCS file: /home/cvs/apache-apr/docs/threadproc.txt,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- threadproc.txt 1999/04/26 15:35:20 1.5
+++ threadproc.txt 1999/04/26 17:22:30 1.6
@@ -52,7 +52,7 @@
arg 2) The starting directory for the new process.
return) APR_SUCCESS or APR_FAILURE
-apr_proc_t *apr_create_process(char *, char *, char **, const apr_procattr_t
*)
+apr_proc_t *apr_create_process(char *, char *const [], char **, const
apr_procattr_t *)
create a new process and run a new executable in it.
Arguments:
arg 1) Path name of the executable file
@@ -62,7 +62,7 @@
If NULL, inherit environ from parent.
arg 4) a pointer to structure that describes the attributes of the new
process. If NULL, process will have the default attributes.
- return) Process description structure.
+ return) Process description structure. NULL on failure
apr_file_t *apr_get_childin(apr_proc_t *)
Get the parent side of the pipe that connects to the child's stdin.