summaryrefslogtreecommitdiffstats
path: root/os/beos/os.h
diff options
context:
space:
mode:
authorDavid Reid <dreid@apache.org>2000-04-04 10:46:58 +0200
committerDavid Reid <dreid@apache.org>2000-04-04 10:46:58 +0200
commit1fa11f8df9ea3b25fc96cc5a82ef7f6743292f06 (patch)
treeb54fa424ca091f5db4391b3fef4dc852a6281ce8 /os/beos/os.h
parentTidy up the beos mpm files. (diff)
downloadapache2-1fa11f8df9ea3b25fc96cc5a82ef7f6743292f06.tar.xz
apache2-1fa11f8df9ea3b25fc96cc5a82ef7f6743292f06.zip
Start cleaning up the beos directory. DSO stuff is now in APR.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84901 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/beos/os.h')
-rw-r--r--os/beos/os.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/os/beos/os.h b/os/beos/os.h
index 3c634f3adc..20560c1a58 100644
--- a/os/beos/os.h
+++ b/os/beos/os.h
@@ -60,7 +60,6 @@
#define APACHE_OS_H
#include "ap_config.h"
-#include <kernel/image.h>
#ifndef PLATFORM
#define PLATFORM "BeOS"
@@ -79,25 +78,4 @@ extern int ap_os_is_path_absolute(const char *file);
#define ap_os_is_filename_valid(f) (1)
#define ap_os_kill(pid, sig) kill(pid, sig)
-/*
- * Abstraction layer for loading
- * Apache modules under run-time via
- * dynamic shared object (DSO) mechanism
- */
-
-void *dlopen(const char *, int);
-int dlclose(void *);
-void *dlsym(void *, const char *);
-const char *dlerror(void);
-
-#define RTLD_NOW 1
-#define RTLD_GLOBAL 0
-
-#define ap_os_dso_handle_t image_id *
-void ap_os_dso_init(void);
-void * ap_os_dso_load(const char *);
-void ap_os_dso_unload(void *);
-void * ap_os_dso_sym(void *, const char *);
-const char *ap_os_dso_error(void);
-
#endif /* !APACHE_OS_H */