Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 5144 invoked from network); 23 Mar 2006 10:59:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 23 Mar 2006 10:59:25 -0000 Received: (qmail 64881 invoked by uid 500); 23 Mar 2006 10:59:17 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 64653 invoked by uid 500); 23 Mar 2006 10:59:16 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 64642 invoked by uid 500); 23 Mar 2006 10:59:16 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 64635 invoked by uid 99); 23 Mar 2006 10:59:16 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Mar 2006 02:59:16 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 23 Mar 2006 02:59:15 -0800 Received: (qmail 4630 invoked by uid 65534); 23 Mar 2006 10:58:37 -0000 Message-ID: <20060323105836.4536.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r388139 - in /webservices/axis2/trunk/c/modules/platforms: unix/axis2_unix.h windows/axis2_windows.h Date: Thu, 23 Mar 2006 10:58:14 -0000 To: axis2-cvs@ws.apache.org From: nandika@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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