diff options
author | Ryan Bloom <rbb@apache.org> | 1999-10-11 17:52:27 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 1999-10-11 17:52:27 +0000 |
commit | c58b8f566333dee8e5c9b53cddc4522a14d0e0cd (patch) | |
tree | 1814d75817283c1aae76fcc6d9a7f5092b08f070 /threadproc/os2/proc.c | |
parent | 5fb2bd667995058fb45777bbbe273855bcfec78e (diff) | |
download | apr-c58b8f566333dee8e5c9b53cddc4522a14d0e0cd.tar.gz apr-c58b8f566333dee8e5c9b53cddc4522a14d0e0cd.zip |
This finishes the argument swaps. The docs haven't been updated, and
probably won't be for a while yet. These argument orders have been
documented in the APR Design doc committed earlier today.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59316 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/os2/proc.c')
-rw-r--r-- | threadproc/os2/proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/threadproc/os2/proc.c b/threadproc/os2/proc.c index 0380a3b27..e8cec1a33 100644 --- a/threadproc/os2/proc.c +++ b/threadproc/os2/proc.c @@ -159,9 +159,9 @@ ap_status_t ap_fork(struct proc_t **proc, ap_context_t *cont) return APR_INPARENT; } -ap_status_t ap_create_process(ap_context_t *cont, char *progname, +ap_status_t ap_create_process(struct proc_t **new, char *progname, char *const args[], char **env, - struct procattr_t *attr, struct proc_t **new) + struct procattr_t *attr, ap_context_t *cont) { int i; ap_status_t stat; |