]> granicus.if.org Git - apache/commitdiff
Remove dead code.
authorBill Stoddard <stoddard@apache.org>
Sun, 13 Feb 2000 00:13:32 +0000 (00:13 +0000)
committerBill Stoddard <stoddard@apache.org>
Sun, 13 Feb 2000 00:13:32 +0000 (00:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84616 13f79535-47bb-0310-9956-ffa450edef68

os/win32/os.h

index 3e801b2631da3811cbf43e6528ed37e769a22282..05f36302b7410a393b9da30e8445a3d5e895e0b2 100644 (file)
@@ -197,8 +197,6 @@ int os_strftime(char *, size_t , const char *, const struct tm *);
 #define MULTI_TIMEOUT (1)
 #define MULTI_ERR (2)
 
-typedef void mutex;
-typedef void semaphore;
 typedef void thread;
 typedef void event;
 
@@ -208,16 +206,4 @@ 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 */