aboutsummaryrefslogtreecommitdiff
path: root/src/util/helper.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-02-27 11:00:10 +0000
committerChristian Grothoff <christian@grothoff.org>2012-02-27 11:00:10 +0000
commit0238db34853380280ccf164918ebbb28260f4629 (patch)
tree2c47ddbbfa27e7a0479d5c12e78d77342780a4bd /src/util/helper.c
parentdc3ae8f36ec69ca2a96a93feda501682ff168320 (diff)
downloadgnunet-0238db34853380280ccf164918ebbb28260f4629.tar.gz
gnunet-0238db34853380280ccf164918ebbb28260f4629.zip
enabling use of pipes for signal communication also on UNIX to enable future integration with Java services
Diffstat (limited to 'src/util/helper.c')
-rw-r--r--src/util/helper.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/helper.c b/src/util/helper.c
index e5d336e2f..43ec23a88 100644
--- a/src/util/helper.c
+++ b/src/util/helper.c
@@ -306,7 +306,8 @@ start_helper (struct GNUNET_HELPER_Handle *h)
306 h->fh_to_helper = 306 h->fh_to_helper =
307 GNUNET_DISK_pipe_handle (h->helper_in, GNUNET_DISK_PIPE_END_WRITE); 307 GNUNET_DISK_pipe_handle (h->helper_in, GNUNET_DISK_PIPE_END_WRITE);
308 h->helper_proc = 308 h->helper_proc =
309 GNUNET_OS_start_process_vap (h->helper_in, h->helper_out, 309 GNUNET_OS_start_process_vap (GNUNET_NO,
310 h->helper_in, h->helper_out,
310 h->binary_name, 311 h->binary_name,
311 h->binary_argv); 312 h->binary_argv);
312 if (NULL == h->helper_proc) 313 if (NULL == h->helper_proc)