You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by wh...@apache.org on 2004/12/20 15:29:40 UTC

cvs commit: ws-axis/c/src/platforms/unix PlatformSpecificUnix.hpp

whitlock    2004/12/20 06:29:40

  Modified:    c/src/platforms/unix PlatformSpecificUnix.hpp
  Log:
  Include header files for sleep
  
  Revision  Changes    Path
  1.7       +2 -0      ws-axis/c/src/platforms/unix/PlatformSpecificUnix.hpp
  
  Index: PlatformSpecificUnix.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/platforms/unix/PlatformSpecificUnix.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- PlatformSpecificUnix.hpp	17 Dec 2004 11:49:45 -0000	1.6
  +++ PlatformSpecificUnix.hpp	20 Dec 2004 14:29:40 -0000	1.7
  @@ -69,6 +69,8 @@
   // =============================================================
   // Miscellaneous
   // =============================================================
  +#include <sys/time.h>
  +#include <unistd.h>
   #define PLATFORM_SLEEP(x) sleep(0);
   
   #endif