You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@hyperreal.org on 1999/08/31 14:33:09 UTC

cvs commit: apache-2.0/src/os/unix os.c os.h

rbb         99/08/31 05:33:09

  Modified:    src/os/beos os.c os.h
               src/os/bs2000 os.c os.h
               src/os/os2 os.c os.h
               src/os/tpf os.c os.h
               src/os/unix os.c os.h
  Log:
  Fix some errors from a global search and replace gone wrong.  This should
  let the new context changes work on all platforms.
  
  Revision  Changes    Path
  1.3       +1 -1      apache-2.0/src/os/beos/os.c
  
  Index: os.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/beos/os.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- os.c	1999/08/31 05:34:36	1.2
  +++ os.c	1999/08/31 12:33:04	1.3
  @@ -1,6 +1,6 @@
   /*
    * This file will include OS specific functions which are not inlineable.
  - * Any inlineable functions should be defined in os ap_context_t nline.c instead.
  + * Any inlineable functions should be defined in os-inline.c instead.
    */
   
   #include "ap_config.h"
  
  
  
  1.3       +1 -1      apache-2.0/src/os/beos/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/beos/os.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- os.h	1999/08/31 05:34:38	1.2
  +++ os.h	1999/08/31 12:33:04	1.3
  @@ -68,7 +68,7 @@
   /*
    * This file in included in all Apache source code. It contains definitions
    * of facilities available on _this_ operating system (HAVE_* macros),
  - * and prototypes of OS specific functions defined in os.c or os ap_context_t nline.c
  + * and prototypes of OS specific functions defined in os.c or os-inline.c
    */
   
   extern int ap_os_is_path_absolute(const char *file);
  
  
  
  1.3       +1 -1      apache-2.0/src/os/bs2000/os.c
  
  Index: os.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/bs2000/os.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- os.c	1999/08/31 05:34:41	1.2
  +++ os.c	1999/08/31 12:33:05	1.3
  @@ -57,7 +57,7 @@
   
   /*
    * This file will include OS specific functions which are not inlineable.
  - * Any inlineable functions should be defined in os ap_context_t nline.c instead.
  + * Any inlineable functions should be defined in os-inline.c instead.
    */
   
   #include "httpd.h"
  
  
  
  1.3       +2 -2      apache-2.0/src/os/bs2000/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/bs2000/os.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- os.h	1999/08/31 05:34:42	1.2
  +++ os.h	1999/08/31 12:33:05	1.3
  @@ -6,7 +6,7 @@
   /*
    * This file in included in all Apache source code. It contains definitions
    * of facilities available on _this_ operating system (HAVE_* macros),
  - * and prototypes of OS specific functions defined in os.c or os ap_context_t nline.c
  + * and prototypes of OS specific functions defined in os.c or os-inline.c
    */
   
   #if !defined(INLINE) && defined(USE_GNU_INLINE)
  @@ -17,7 +17,7 @@
   
   INLINE int ap_os_is_path_absolute(const char *file);
   
  -#include "os ap_context_t nline.c"
  +#include "os-inline.c"
   #endif
   
   #ifndef INLINE
  
  
  
  1.3       +1 -1      apache-2.0/src/os/os2/os.c
  
  Index: os.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/os2/os.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- os.c	1999/08/31 05:34:46	1.2
  +++ os.c	1999/08/31 12:33:06	1.3
  @@ -1,6 +1,6 @@
   /*
    * This file will include OS specific functions which are not inlineable.
  - * Any inlineable functions should be defined in os ap_context_t nline.c instead.
  + * Any inlineable functions should be defined in os-inline.c instead.
    */
   
   #include "os.h"
  
  
  
  1.3       +2 -2      apache-2.0/src/os/os2/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/os2/os.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- os.h	1999/08/31 05:34:46	1.2
  +++ os.h	1999/08/31 12:33:06	1.3
  @@ -8,7 +8,7 @@
   /*
    * This file in included in all Apache source code. It contains definitions
    * of facilities available on _this_ operating system (HAVE_* macros),
  - * and prototypes of OS specific functions defined in os.c or os ap_context_t nline.c
  + * and prototypes of OS specific functions defined in os.c or os-inline.c
    */
   
   #if defined(__GNUC__) && !defined(INLINE)
  @@ -19,7 +19,7 @@
   
   INLINE int ap_os_is_path_absolute(const char *file);
   
  -#include "os ap_context_t nline.c"
  +#include "os-inline.c"
   #endif
   
   #ifndef INLINE
  
  
  
  1.3       +1 -1      apache-2.0/src/os/tpf/os.c
  
  Index: os.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/tpf/os.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- os.c	1999/08/31 05:34:53	1.2
  +++ os.c	1999/08/31 12:33:07	1.3
  @@ -57,7 +57,7 @@
   
   /*
    * This file will include OS specific functions which are not inlineable.
  - * Any inlineable functions should be defined in os ap_context_t nline.c instead.
  + * Any inlineable functions should be defined in os-inline.c instead.
    */
   
   #include "httpd.h"
  
  
  
  1.3       +2 -2      apache-2.0/src/os/tpf/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/tpf/os.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- os.h	1999/08/31 05:34:53	1.2
  +++ os.h	1999/08/31 12:33:07	1.3
  @@ -10,7 +10,7 @@
   /*
    * This file in included in all Apache source code. It contains definitions
    * of facilities available on _this_ operating system (HAVE_* macros),
  - * and prototypes of OS specific functions defined in os.c or os ap_context_t nline.c
  + * and prototypes of OS specific functions defined in os.c or os-inline.c
    */
   
   #include "ap_config.h"
  @@ -20,7 +20,7 @@
    * part of the header
    */
   #define INLINE extern ap_inline
  -#include "os ap_context_t nline.c"
  +#include "os-inline.c"
   #endif
   
   #ifndef INLINE
  
  
  
  1.3       +1 -1      apache-2.0/src/os/unix/os.c
  
  Index: os.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/unix/os.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- os.c	1999/08/31 05:34:59	1.2
  +++ os.c	1999/08/31 12:33:08	1.3
  @@ -1,6 +1,6 @@
   /*
    * This file will include OS specific functions which are not inlineable.
  - * Any inlineable functions should be defined in os ap_context_t nline.c instead.
  + * Any inlineable functions should be defined in os-inline.c instead.
    */
   
   #include "ap_config.h"
  
  
  
  1.4       +1 -1      apache-2.0/src/os/unix/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/unix/os.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- os.h	1999/08/31 05:35:01	1.3
  +++ os.h	1999/08/31 12:33:08	1.4
  @@ -67,7 +67,7 @@
   /*
    * This file in included in all Apache source code. It contains definitions
    * of facilities available on _this_ operating system (HAVE_* macros),
  - * and prototypes of OS specific functions defined in os.c or os ap_context_t nline.c
  + * and prototypes of OS specific functions defined in os.c or os-inline.c
    */
   
   #if !defined(INLINE) && defined(USE_GNU_INLINE)