diff options
author | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2001-08-03 00:31:43 +0000 |
---|---|---|
committer | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2001-08-03 00:31:43 +0000 |
commit | f32ca61d386ead3416635f3da50417d1fc12e1ff (patch) | |
tree | 7bd1d4e48922e105da2f4fd0fc5289cb484c3a1e /threadproc/netware | |
parent | 3198cc3df9e10e577ac9fcd22e66b50265b9f94d (diff) | |
download | libapr-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/netware')
-rw-r--r-- | threadproc/netware/thread.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/threadproc/netware/thread.c b/threadproc/netware/thread.c index c8a42d493..43efb0faa 100644 --- a/threadproc/netware/thread.c +++ b/threadproc/netware/thread.c @@ -157,10 +157,9 @@ int apr_os_thread_equal(apr_os_thread_t tid1, apr_os_thread_t tid2) return (tid1 == tid2); } -apr_status_t apr_thread_yield() +void apr_thread_yield() { NXThreadYield(); - return APR_SUCCESS; } apr_status_t apr_thread_exit(apr_thread_t *thd, |