diff options
author | Justus Winter <[email protected]> | 2016-01-14 17:20:14 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-02-23 10:58:52 +0000 |
commit | 5ba4f6047b84e4cfdb3e6bc88e574ca7a455da81 (patch) | |
tree | b27969273ef7f6f30a86e59ae03eab64ee8b9467 /common/exechelp-w32ce.c | |
parent | common/exechelp: Add general pipe function. (diff) | |
download | gnupg-5ba4f6047b84e4cfdb3e6bc88e574ca7a455da81.tar.gz gnupg-5ba4f6047b84e4cfdb3e6bc88e574ca7a455da81.zip |
common/exechelp: Provide a way to wait for multiple processes.
* common/exechelp-posix.c (gnupg_wait_process): Generalize to
'gnupg_wait_processes'.
* common/exechelp-w32.c (gnupg_wait_process): Likewise.
* common/exechelp-w32ce.c (gnupg_wait_process): New function stub.
* common/exechelp.h (gnupg_wait_process): New prototype.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | common/exechelp-w32ce.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/exechelp-w32ce.c b/common/exechelp-w32ce.c index 710c828d2..e208f6e2f 100644 --- a/common/exechelp-w32ce.c +++ b/common/exechelp-w32ce.c @@ -796,6 +796,15 @@ gnupg_wait_process (const char *pgmname, pid_t pid, int hang, int *exitcode) } +/* See exechelp.h for a description. */ +gpg_error_t +gnupg_wait_processes (const char **pgmnames, pid_t *pids, size_t count, + int hang, int *r_exitcodes) +{ + return gpg_error (GPG_ERR_NOT_IMPLEMENTED); +} + + void gnupg_release_process (pid_t pid) { |