You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2006/03/23 11:58:14 UTC

svn commit: r388139 - in /webservices/axis2/trunk/c/modules/platforms: unix/axis2_unix.h windows/axis2_windows.h

Author: nandika
Date: Thu Mar 23 02:58:14 2006
New Revision: 388139

URL: http://svn.apache.org/viewcvs?rev=388139&view=rev
Log:
AXIS2_SLEEP abstraction added to platform header files

Modified:
    webservices/axis2/trunk/c/modules/platforms/unix/axis2_unix.h
    webservices/axis2/trunk/c/modules/platforms/windows/axis2_windows.h

Modified: webservices/axis2/trunk/c/modules/platforms/unix/axis2_unix.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/platforms/unix/axis2_unix.h?rev=388139&r1=388138&r2=388139&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/platforms/unix/axis2_unix.h (original)
+++ webservices/axis2/trunk/c/modules/platforms/unix/axis2_unix.h Thu Mar 23 02:58:14 2006
@@ -127,7 +127,8 @@
 #define AXIS2_STRRCHR(x, y) (strrchr(x, y))
 
 #define AXIS2_PLATFORM_SLEEP(x) sleep(0);
-
+/** sleep function abstraction */
+#define AXIS2_SLEEP sleep 
 /**
  * Get the last error code from the system.
  * Please ensure that this is a thread safe implementation

Modified: webservices/axis2/trunk/c/modules/platforms/windows/axis2_windows.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/platforms/windows/axis2_windows.h?rev=388139&r1=388138&r2=388139&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/platforms/windows/axis2_windows.h (original)
+++ webservices/axis2/trunk/c/modules/platforms/windows/axis2_windows.h Thu Mar 23 02:58:14 2006
@@ -112,6 +112,7 @@
 
 #define AXIS2_PLATFORM_SLEEP(x) Sleep(0);
 
+#define AXIS2_SLEEP Sleep
 /**
  * Get the last error code from the system.
  * Please ensure that this is a thread safe implementation