mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
b94817f913
* elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise. * elf/dl-close.c (_dl_close_worker): Likewise. * elf/dl-open.c (_dl_open_worker): Likewise. * sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
9 lines
304 B
C
9 lines
304 B
C
#include <sysdep.h>
|
|
|
|
/* No multi-thread handling enabled. */
|
|
#define SINGLE_THREAD_P (1)
|
|
#define RTLD_SINGLE_THREAD_P (1)
|
|
#define LIBC_CANCEL_ASYNC() 0 /* Just a dummy value. */
|
|
#define LIBC_CANCEL_RESET(val) ((void)(val)) /* Nothing, but evaluate it. */
|
|
#define LIBC_CANCEL_HANDLED() /* Nothing. */
|