You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/10/13 15:48:52 UTC

svn commit: r824759 - /commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c

Author: mturk
Date: Tue Oct 13 13:48:52 2009
New Revision: 824759

URL: http://svn.apache.org/viewvc?rev=824759&view=rev
Log:
Port APR's socket pipe

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c?rev=824759&r1=824758&r2=824759&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c Tue Oct 13 13:48:52 2009
@@ -32,7 +32,6 @@
 static volatile LONG pipe_id = 0;
 static apr_status_t create_socket_pipe(SOCKET *rd, SOCKET *wr)
 {
-    static int id = 0;
     FD_SET rs;
     SOCKET ls;
     struct timeval socktm;