You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@hyperreal.org on 1999/07/19 05:51:56 UTC

cvs commit: apache-apr/pthreads/src/main acceptlock.c http_main.c

manoj       99/07/18 20:51:56

  Modified:    pthreads/src/include scoreboard.h
               pthreads/src/main acceptlock.c http_main.c
  Log:
  pthread.h is a system include; use <> instead of "" in the #include to
  let "make depend" understand it correctly.
  
  Revision  Changes    Path
  1.9       +1 -1      apache-apr/pthreads/src/include/scoreboard.h
  
  Index: scoreboard.h
  ===================================================================
  RCS file: /home/cvs/apache-apr/pthreads/src/include/scoreboard.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -d -u -r1.8 -r1.9
  --- scoreboard.h	1999/06/10 06:25:56	1.8
  +++ scoreboard.h	1999/07/19 03:51:54	1.9
  @@ -57,7 +57,7 @@
   
   #ifndef APACHE_SCOREBOARD_H
   #define APACHE_SCOREBOARD_H
  -#include "pthread.h"
  +#include <pthread.h>
   #ifdef __cplusplus
   extern "C" {
   #endif
  
  
  
  1.13      +1 -1      apache-apr/pthreads/src/main/acceptlock.c
  
  Index: acceptlock.c
  ===================================================================
  RCS file: /home/cvs/apache-apr/pthreads/src/main/acceptlock.c,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -d -u -r1.12 -r1.13
  --- acceptlock.c	1999/07/19 00:59:32	1.12
  +++ acceptlock.c	1999/07/19 03:51:55	1.13
  @@ -77,7 +77,7 @@
   #include <sys/shm.h>
   #endif
    
  -#include "pthread.h" 
  +#include <pthread.h>
   
   /* Number of cross-process locks we're managing */
   static int lock_count;
  
  
  
  1.95      +1 -1      apache-apr/pthreads/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-apr/pthreads/src/main/http_main.c,v
  retrieving revision 1.94
  retrieving revision 1.95
  diff -u -d -u -r1.94 -r1.95
  --- http_main.c	1999/07/19 02:02:02	1.94
  +++ http_main.c	1999/07/19 03:51:55	1.95
  @@ -98,7 +98,7 @@
   #include <netinet/tcp.h> 
   #include <stdio.h> 
   
  -#include "pthread.h" 
  +#include <pthread.h>
   /*#include initialization if any 
   #include threadabstractionlayer; 
   #include networkiolayer