diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2001-08-03 00:31:43 +0000 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2001-08-03 00:31:43 +0000 |
commit | f45e1496ceacef1a3d6c044b75bbbfd5289d283a (patch) | |
tree | 7bd1d4e48922e105da2f4fd0fc5289cb484c3a1e /threadproc/unix | |
parent | 2b869e92ebb2e55b02be13c985f4e42f9065431a (diff) | |
download | apr-f45e1496ceacef1a3d6c044b75bbbfd5289d283a.tar.gz apr-f45e1496ceacef1a3d6c044b75bbbfd5289d283a.zip |
Added a stub for apr_thread_yield()
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62096 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/unix')
-rw-r--r-- | threadproc/unix/thread.c | 4 |
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); |