mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
rt: Move generic implementation from sysdeps/pthread to rt
The pthread-based implementation is the generic one. Replacing the stubs makes it clear that they do not have to be adjusted for the libpthread move. Result of: git mv -f sysdeps/pthread/aio_misc.h sysdeps/generic/ git mv sysdeps/pthread/timer_routines.c sysdeps/htl/ git mv -f sysdeps/pthread/{aio,lio,timer}_*.c rt/ Followed by manual adjustment of the #include paths in sysdeps/unix/sysv/linux/wordsize-64, and a move of the version definitions formerly in sysdeps/pthread/Versions. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
@ -28,11 +28,21 @@
|
||||
/* And undo the hack. */
|
||||
#undef aio_error64
|
||||
|
||||
#include <aio_misc.h>
|
||||
|
||||
|
||||
int
|
||||
aio_error (const struct aiocb *aiocbp)
|
||||
{
|
||||
return aiocbp->__error_code;
|
||||
int ret;
|
||||
|
||||
/* Acquire the mutex to make sure all operations for this request are
|
||||
complete. */
|
||||
pthread_mutex_lock(&__aio_requests_mutex);
|
||||
ret = aiocbp->__error_code;
|
||||
pthread_mutex_unlock(&__aio_requests_mutex);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
weak_alias (aio_error, aio_error64)
|
||||
|
Reference in New Issue
Block a user