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/02/13 01:13:35 UTC

cvs commit: apache-2.0/src/os/win32 os.h

stoddard    00/02/12 16:13:35

  Modified:    src/os/win32 os.h
  Log:
  Remove dead code.
  
  Revision  Changes    Path
  1.15      +0 -14     apache-2.0/src/os/win32/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/win32/os.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- os.h	2000/01/23 16:37:46	1.14
  +++ os.h	2000/02/13 00:13:32	1.15
  @@ -197,8 +197,6 @@
   #define MULTI_TIMEOUT (1)
   #define MULTI_ERR (2)
   
  -typedef void mutex;
  -typedef void semaphore;
   typedef void thread;
   typedef void event;
   
  @@ -207,17 +205,5 @@
   int await_thread(thread *thread_id, int sec_to_wait);
   void exit_thread(int status);
   void free_thread(thread *thread_id);
  -
  -semaphore *create_semaphore(int initial);
  -int acquire_semaphore(semaphore *semaphore_id);
  -int release_semaphore(semaphore *semaphore_id);
  -void destroy_semaphore(semaphore *semaphore_id);
  -
  -event *create_event(int manual, int initial, char *name);
  -event *open_event(char *name);
  -int acquire_event(event *event_id);
  -int set_event(event *event_id);
  -int reset_event(event *event_id);
  -void destroy_event(event *event_id);
   
   #endif   /* ! APACHE_OS_H */