diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-11 13:57:17 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:35 -0400 |
commit | 49722a8ed4c8fd056ac8aebd6bec9d998b700f80 (patch) | |
tree | 9c8655196727127bb9682a6548de33bec5179fad /src/aio | |
parent | 7e399fabd3db2c528b5982803eeba2841f547695 (diff) | |
download | musl-49722a8ed4c8fd056ac8aebd6bec9d998b700f80.tar.gz musl-49722a8ed4c8fd056ac8aebd6bec9d998b700f80.tar.bz2 musl-49722a8ed4c8fd056ac8aebd6bec9d998b700f80.tar.xz musl-49722a8ed4c8fd056ac8aebd6bec9d998b700f80.zip |
move additional pthread internal declarations to pthread_impl.h, hide
these were overlooked for various reasons in earlier stages.
Diffstat (limited to 'src/aio')
-rw-r--r-- | src/aio/aio_suspend.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/aio/aio_suspend.c b/src/aio/aio_suspend.c index 08fb5ddc..b269dd0f 100644 --- a/src/aio/aio_suspend.c +++ b/src/aio/aio_suspend.c @@ -5,8 +5,6 @@ #include "libc.h" #include "pthread_impl.h" -extern volatile int __aio_fut; - int aio_suspend(const struct aiocb *const cbs[], int cnt, const struct timespec *ts) { int i, tid = 0, ret, expect = 0; |