2008-07-01 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Tue, 1 Jul 2008 18:52:52 +0000 (18:52 -0000)
committerZoltan Varga <vargaz@gmail.com>
Tue, 1 Jul 2008 18:52:52 +0000 (18:52 -0000)
* process-private.h (_WAPI_PROCESS_UNHANDLED_PID_MASK): Fix the amd64 build.

svn path=/trunk/mono/; revision=107000

mono/io-layer/ChangeLog
mono/io-layer/process-private.h

index ce2630a84dc70fc2410ca7e4cac4613f762fd771..71b7c4bf4fe9d2bf516b3ef8dddd57401330130c 100644 (file)
@@ -1,3 +1,7 @@
+2008-07-01  Zoltan Varga  <vargaz@gmail.com>
+
+       * process-private.h (_WAPI_PROCESS_UNHANDLED_PID_MASK): Fix the amd64 build.
+
 2008-06-27  Dick Porter  <dick@ximian.com>
 
        * processes.c: Implement a form of process pseudo-handle to allow
index d2ee4f1eafc36e9f13067c37c6172a000fc5df33..0b5a25d1edaa00f723b8ee9bc43cfcca97726268 100644 (file)
 #define _WAPI_PROCESS_CURRENT (gpointer)0xFFFFFFFF
 
 /* This marks a system process that we don't have a handle on */
-#if SIZEOF_VOID_P == 8
-#define _WAPI_PROCESS_UNHANDLED_PID_MASK 0xFFFFFFFF
-#else
 #define _WAPI_PROCESS_UNHANDLED_PID_MASK 0x7FFF
-#endif
 #define _WAPI_PROCESS_UNHANDLED (-1 & ~_WAPI_PROCESS_UNHANDLED_PID_MASK) /*0xFFFF8000*/
 
 extern gpointer _wapi_process_duplicate (void);