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 ro...@apache.org on 2003/09/08 13:50:43 UTC

cvs commit: xml-axis/c/src/engine SharedObject.h

roshan      2003/09/08 04:50:43

  Modified:    c/src/engine SharedObject.h
  Log:
  added
  #ifdef WIN32
  #else //Linux
  #include "pthread.h"
  #endif
  line
  
  removed a line as well
  
  Revision  Changes    Path
  1.7       +3 -1      xml-axis/c/src/engine/SharedObject.h
  
  Index: SharedObject.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/engine/SharedObject.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- SharedObject.h	8 Sep 2003 10:22:52 -0000	1.6
  +++ SharedObject.h	8 Sep 2003 11:50:43 -0000	1.7
  @@ -67,7 +67,10 @@
   #define AFX_SHAREDOBJECT_H__0805D25C_2F7E_4B19_BECE_0A8BFE9F0830__INCLUDED_
   
   #include "../common/GDefine.h"
  +#ifdef WIN32
  +#else //Linux
   #include "pthread.h"
  +#endif
   
   class SharedObject  
   {
  @@ -85,5 +88,4 @@
       #endif
   };
   
  -static pthread_mutex_t mut = PTHREAD_MUTEX_INITIALIZER;
   #endif // !defined(AFX_SHAREDOBJECT_H__0805D25C_2F7E_4B19_BECE_0A8BFE9F0830__INCLUDED_)