summaryrefslogtreecommitdiff
path: root/threadproc/unix/thread.c
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-08-03 00:31:43 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-08-03 00:31:43 +0000
commitf32ca61d386ead3416635f3da50417d1fc12e1ff (patch)
tree7bd1d4e48922e105da2f4fd0fc5289cb484c3a1e /threadproc/unix/thread.c
parent3198cc3df9e10e577ac9fcd22e66b50265b9f94d (diff)
downloadlibapr-f32ca61d386ead3416635f3da50417d1fc12e1ff.tar.gz
Added a stub for apr_thread_yield()
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62096 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/unix/thread.c')
-rw-r--r--threadproc/unix/thread.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/threadproc/unix/thread.c b/threadproc/unix/thread.c
index daa8b2566..73d6b96dd 100644
--- a/threadproc/unix/thread.c
+++ b/threadproc/unix/thread.c
@@ -219,6 +219,10 @@ apr_status_t apr_thread_detach(apr_thread_t *thd)
}
}
+void apr_thread_yield()
+{
+}
+
apr_status_t apr_thread_data_get(void **data, const char *key, apr_thread_t *thread)
{
return apr_pool_userdata_get(data, key, thread->cntxt);