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/18 16:50:48 UTC

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

Author: mturk
Date: Sun Oct 18 14:50:48 2009
New Revision: 826454

URL: http://svn.apache.org/viewvc?rev=826454&view=rev
Log:
Fix typos

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/pipe.c
    commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.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=826454&r1=826453&r2=826454&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 Sun Oct 18 14:50:48 2009
@@ -17,7 +17,7 @@
 #include "acr.h"
 #include "acr_private.h"
 #include "acr_arch.h"
-#include "acr_atomic.h"
+#include "acr_atomics.h"
 #include "acr_port.h"
 #include "acr_error.h"
 #include "acr_string.h"
@@ -30,7 +30,7 @@
  *
  */
 
-static acr_atomic_t pipe_id = 0;
+static acr_atomic32_t pipe_id = 0;
 static int crate_socketpair(SOCKET *rd, SOCKET *wr, int nonblocking)
 {
     FD_SET rs;

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.c?rev=826454&r1=826453&r2=826454&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.c Sun Oct 18 14:50:48 2009
@@ -198,7 +198,7 @@
         break;
         case SIGABRT:
             pre_exit_cleanup();
-#if defined(_MSC_VER) && (_MSC_VER >= 1400)
+#if defined(_MSC_VER) && (_MSC_VER > 1400)
             /* Visual C++ 2005 and later
              */
             _set_abort_behavior(0, _WRITE_ABORT_MSG);