You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@hyperreal.org on 2000/01/28 03:08:22 UTC

cvs commit: apache-2.0/src/lib/apr/threadproc/win32 threadproc.h

stoddard    00/01/27 18:08:22

  Modified:    src/lib/apr/threadproc/win32 threadproc.h
  Log:
  Cleanup funky indenting
  
  Revision  Changes    Path
  1.2       +5 -7      apache-2.0/src/lib/apr/threadproc/win32/threadproc.h
  
  Index: threadproc.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/threadproc/win32/threadproc.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- threadproc.h	1999/08/17 15:59:51	1.1
  +++ threadproc.h	2000/01/28 02:08:20	1.2
  @@ -65,25 +65,23 @@
   struct thread_t {
       ap_context_t *cntxt;
       HANDLE td;
  -	ap_int32_t cancel;
  -	ap_int32_t cancel_how;
  +    ap_int32_t cancel;
  +    ap_int32_t cancel_how;
   };
   
   struct threadattr_t {
       ap_context_t *cntxt;
       ap_int32_t detach;
  -
   };
   
   struct threadkey_t {
       ap_context_t *cntxt;
       DWORD key;
  -
   };
   
   struct procattr_t {
       ap_context_t *cntxt;
  -	STARTUPINFO si;
  +    STARTUPINFO si;
       ap_file_t *parent_in;
       ap_file_t *child_in;
       ap_file_t *parent_out;
  @@ -92,12 +90,12 @@
       ap_file_t *child_err;
       char *currdir;
       ap_int32_t cmdtype;
  -	ap_int32_t detached;
  +    ap_int32_t detached;
   };
   
   struct proc_t {
       ap_context_t *cntxt;
  -	PROCESS_INFORMATION pi;
  +    PROCESS_INFORMATION pi;
       struct procattr_t *attr;
   };