summaryrefslogtreecommitdiff
path: root/threadproc
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-02-25 01:24:37 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-02-25 01:24:37 +0000
commit61ebdfa9d87648790ba403b67a3cd48309a686ce (patch)
tree2e09d4017f6e47f2e9542f37696a9909119c14ff /threadproc
parent28bd28e02342c6aa8aba2130bb780cda1fb9511d (diff)
downloadlibapr-61ebdfa9d87648790ba403b67a3cd48309a686ce.tar.gz
if we don't have the prototype, we shouldn't have the function either
(haven't we been here before?) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61294 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc')
-rw-r--r--threadproc/unix/thread.c83
1 files changed, 0 insertions, 83 deletions
diff --git a/threadproc/unix/thread.c b/threadproc/unix/thread.c
index d6566c9db..90f4d0c16 100644
--- a/threadproc/unix/thread.c
+++ b/threadproc/unix/thread.c
@@ -235,29 +235,6 @@ apr_status_t apr_os_thread_put(apr_thread_t **thd, apr_os_thread_t *thethd,
#if !APR_HAS_THREADS
-apr_status_t apr_thread_create(apr_thread_t **new_thread, apr_threadattr_t *attr,
- apr_thread_start_t func, void *data,
- apr_pool_t *cont)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_threadattr_create(apr_threadattr_t **new, apr_pool_t *cont)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_threadkey_private_create(apr_threadkey_t **key, void (*dest)(void *),
- apr_pool_t *cont)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_threadkey_private_delete(apr_threadkey_t *key)
-{
- return APR_ENOTIMPL;
-}
-
apr_status_t apr_os_thread_get(void); /* avoid warning for no prototype */
apr_status_t apr_os_thread_get(void)
@@ -265,64 +242,4 @@ apr_status_t apr_os_thread_get(void)
return APR_ENOTIMPL;
}
-apr_status_t apr_threadattr_detach_set(apr_threadattr_t *attr)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_thread_data_get(void **data, const char *key, apr_thread_t *thread)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_threadkey_data_get(void **data, const char *key,
- apr_threadkey_t *threadkey)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_threadkey_private_get(void **new_mem, apr_threadkey_t *key)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_threadattr_detach_get(apr_threadattr_t *attr, apr_int32_t on)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_thread_data_set(void *data, const char *key,
- apr_status_t (*cleanup)(void *),
- apr_thread_t *thread)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_threadkey_data_set(void *data, const char *key,
- apr_status_t (*cleanup) (void *),
- apr_threadkey_t *threadkey)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_threadkey_private_set(void *priv, apr_threadkey_t *key)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_thread_detach(apr_thread_t *thd)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_thread_exit(apr_thread_t *thd, apr_status_t *retval)
-{
- return APR_ENOTIMPL;
-}
-
-apr_status_t apr_thread_join(apr_status_t *retval, apr_thread_t *thd)
-{
- return APR_ENOTIMPL;
-}
-
#endif