You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2005/02/14 08:57:41 UTC

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_util.c

mturk       2005/02/13 23:57:41

  Modified:    jk/native/common jk_util.c
  Log:
  Unabify the source.
  
  Revision  Changes    Path
  1.55      +3 -3      jakarta-tomcat-connectors/jk/native/common/jk_util.c
  
  Index: jk_util.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_util.c,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -r1.54 -r1.55
  --- jk_util.c	12 Feb 2005 19:26:41 -0000	1.54
  +++ jk_util.c	14 Feb 2005 07:57:41 -0000	1.55
  @@ -1089,10 +1089,10 @@
   {
       pthread_t t = pthread_self();
   #ifdef AS400
  -	/* OS400 use 64 bits ThreadId, get only low 32 bits for now */
  +    /* OS400 use 64 bits ThreadId, get only low 32 bits for now */
       pthread_id_np_t       tid;
       pthread_getunique_np(&t, &tid);      
  -	return ((int)(tid.intId.lo & 0xFFFFFFFF));
  +    return ((int)(tid.intId.lo & 0xFFFFFFFF));
   #else
       int tid = (int)(t & 0xFFFF);
       return tid;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org