diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2003-02-27 19:13:48 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2003-02-27 19:13:48 +0000 |
commit | 27b50d1f4df34995aaa0f0638ed91788ae805f44 (patch) | |
tree | f69732fc7930cfc5ebef670569625edd237b4e83 /threadproc/win32/proc.c | |
parent | df9eb9c6679d284355e5d90c1fdafad5bb60030b (diff) | |
download | libapr-27b50d1f4df34995aaa0f0638ed91788ae805f44.tar.gz |
As near as I can tell, Win32 will now correspond to Unix in terms of the
availability and lifetime of the hproc process handle.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64388 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/win32/proc.c')
-rw-r--r-- | threadproc/win32/proc.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/threadproc/win32/proc.c b/threadproc/win32/proc.c index 9f13d6e7a..ed52f314b 100644 --- a/threadproc/win32/proc.c +++ b/threadproc/win32/proc.c @@ -699,7 +699,10 @@ APR_DECLARE(apr_status_t) apr_proc_wait_all_procs(apr_proc_t *proc, apr_pool_t *p) { /* Unix does apr_proc_wait(proc(-1), exitcode, exitwhy, waithow) - * but Win32's apr_proc_wait won't work that way. + * but Win32's apr_proc_wait won't work that way. We can either + * register all APR created processes in some sort of AsyncWait + * thread, or simply walk from the global process pool for all + * apr_pool_note_subprocess()es registered with APR. */ return APR_ENOTIMPL; } @@ -735,6 +738,8 @@ APR_DECLARE(apr_status_t) apr_proc_wait(apr_proc_t *proc, *exitcode = stat; if (exitwhy) *exitwhy = why_from_exit_code(stat); + CloseHandle(proc->hproc); + proc->hproc = NULL; return APR_CHILD_DONE; } } |