gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r12989 - gnunet/src/include


From: gnunet
Subject: [GNUnet-SVN] r12989 - gnunet/src/include
Date: Wed, 15 Sep 2010 10:27:19 +0200

Author: wachs
Date: 2010-09-15 10:27:19 +0200 (Wed, 15 Sep 2010)
New Revision: 12989

Modified:
   gnunet/src/include/gnunet_disk_lib.h
Log:
0001602: A patch to fix process spawning with redirected std streams 


Modified: gnunet/src/include/gnunet_disk_lib.h
===================================================================
--- gnunet/src/include/gnunet_disk_lib.h        2010-09-15 08:26:25 UTC (rev 
12988)
+++ gnunet/src/include/gnunet_disk_lib.h        2010-09-15 08:27:19 UTC (rev 
12989)
@@ -326,9 +326,13 @@
 /**
  * Creates an interprocess channel
  * @param blocking creates an asynchronous pipe if set to GNUNET_NO
+ * @param inherit_read 1 to make read handle inheritable, 0 otherwise (NT only)
+ * @param inherit_write 1 to make write handle inheritable, 0 otherwise (NT 
only)
  * @return handle to the new pipe, NULL on error
  */
-struct GNUNET_DISK_PipeHandle *GNUNET_DISK_pipe (int blocking);
+struct GNUNET_DISK_PipeHandle *GNUNET_DISK_pipe (int blocking,
+                                                int inherit_read,
+                                                int inherit_write);
 
 
 /**




reply via email to

[Prev in Thread] Current Thread [Next in Thread]