aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_os_lib.h
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-02-16 12:11:16 +0000
committerNathan S. Evans <evans@in.tum.de>2010-02-16 12:11:16 +0000
commit1ddfaae362fb43c7a032e347d082ed8a5dc3575d (patch)
tree8a6f000f7f0c0a7c5cbf842e8956b20684e8290f /src/include/gnunet_os_lib.h
parent5dec45de0465e2eb483c3df18773c0501992e183 (diff)
downloadgnunet-1ddfaae362fb43c7a032e347d082ed8a5dc3575d.tar.gz
gnunet-1ddfaae362fb43c7a032e347d082ed8a5dc3575d.zip
api header changes
Diffstat (limited to 'src/include/gnunet_os_lib.h')
-rw-r--r--src/include/gnunet_os_lib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h
index 3bc6eb5f9..02d1063f7 100644
--- a/src/include/gnunet_os_lib.h
+++ b/src/include/gnunet_os_lib.h
@@ -189,11 +189,14 @@ int GNUNET_OS_set_process_priority (pid_t proc,
189/** 189/**
190 * Start a process. 190 * Start a process.
191 * 191 *
192 * @param pipe_stdin pipe to use to send input to child process (or NULL)
193 * @param pipe_stdout pipe to use to get output from child process (or NULL)
192 * @param filename name of the binary 194 * @param filename name of the binary
193 * @param ... NULL-terminated list of arguments to the process 195 * @param ... NULL-terminated list of arguments to the process
194 * @return process ID of the new process, -1 on error 196 * @return process ID of the new process, -1 on error
195 */ 197 */
196pid_t GNUNET_OS_start_process (const char *filename, ...); 198pid_t
199GNUNET_OS_start_process (struct GNUNET_DISK_PipeHandle *pipe_stdin, struct GNUNET_DISK_PipeHandle *pipe_stdout, const char *filename, ...);
197 200
198 201
199/** 202/**