aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_os_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_os_lib.h')
-rw-r--r--src/include/gnunet_os_lib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h
index 9cf68df58..04fc1a406 100644
--- a/src/include/gnunet_os_lib.h
+++ b/src/include/gnunet_os_lib.h
@@ -32,7 +32,7 @@
32 * processes using signals. Because signals are not supported on W32 32 * processes using signals. Because signals are not supported on W32
33 * and Java (at least not nicely), we can alternatively use a pipe 33 * and Java (at least not nicely), we can alternatively use a pipe
34 * to send signals to the child processes (if the child process is 34 * to send signals to the child processes (if the child process is
35 * a full-blown GNUnet process that supports reading signals from 35 * a full-blown GNUnet process that supports reading signals from
36 * a pipe, of course). Naturally, this also only works for 'normal' 36 * a pipe, of course). Naturally, this also only works for 'normal'
37 * termination via signals, and not as a replacement for SIGKILL. 37 * termination via signals, and not as a replacement for SIGKILL.
38 * Thus using pipes to communicate signals should only be enabled if 38 * Thus using pipes to communicate signals should only be enabled if
@@ -72,7 +72,7 @@ enum GNUNET_OS_InheritStdioFlags
72 * inherit stdin of the parent. 72 * inherit stdin of the parent.
73 */ 73 */
74 GNUNET_OS_INHERIT_STD_IN = 1, 74 GNUNET_OS_INHERIT_STD_IN = 1,
75 75
76 /** 76 /**
77 * When this flag is set, the child process will 77 * When this flag is set, the child process will
78 * inherit stdout of the parent. 78 * inherit stdout of the parent.
@@ -319,7 +319,7 @@ GNUNET_OS_start_process_vap (int pipe_control,
319 enum GNUNET_OS_InheritStdioFlags std_inheritance, 319 enum GNUNET_OS_InheritStdioFlags std_inheritance,
320 struct GNUNET_DISK_PipeHandle *pipe_stdin, 320 struct GNUNET_DISK_PipeHandle *pipe_stdin,
321 struct GNUNET_DISK_PipeHandle *pipe_stdout, 321 struct GNUNET_DISK_PipeHandle *pipe_stdout,
322 const char *filename, 322 const char *filename,
323 char *const argv[]); 323 char *const argv[]);
324 324
325 325
@@ -375,7 +375,7 @@ GNUNET_OS_start_process_va (int pipe_control,
375struct GNUNET_OS_Process * 375struct GNUNET_OS_Process *
376GNUNET_OS_start_process_v (int pipe_control, 376GNUNET_OS_start_process_v (int pipe_control,
377 enum GNUNET_OS_InheritStdioFlags std_inheritance, 377 enum GNUNET_OS_InheritStdioFlags std_inheritance,
378 const SOCKTYPE *lsocks, 378 const SOCKTYPE *lsocks,
379 const char *filename, 379 const char *filename,
380 char *const argv[]); 380 char *const argv[]);
381 381
@@ -482,7 +482,7 @@ GNUNET_OS_install_parent_control_handler (void *cls,
482 * GNUNET_NO if not SUID (but binary exists), 482 * GNUNET_NO if not SUID (but binary exists),
483 * GNUNET_SYSERR on error (no such binary or not executable) 483 * GNUNET_SYSERR on error (no such binary or not executable)
484 */ 484 */
485int 485int
486GNUNET_OS_check_helper_binary (const char *binary, int check_suid, const char * params); 486GNUNET_OS_check_helper_binary (const char *binary, int check_suid, const char * params);
487 487
488 488