diff options
Diffstat (limited to 'ldso/ldso/i386/dl-syscalls.h')
-rw-r--r-- | ldso/ldso/i386/dl-syscalls.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ldso/ldso/i386/dl-syscalls.h b/ldso/ldso/i386/dl-syscalls.h index c020832bb..f0f4baed8 100644 --- a/ldso/ldso/i386/dl-syscalls.h +++ b/ldso/ldso/i386/dl-syscalls.h @@ -1,7 +1,6 @@ -/* Define the __set_errno macro as nothing so that INLINE_SYSCALL - * won't set errno, which is important since we make system calls - * before the errno symbol is dynamicly linked. */ - -#define __set_errno(X) {(void)(X);} +/* We can't use the real errno in ldso, since it has not yet + * been dynamicly linked in yet. */ +extern int _dl_errno; +#define __set_errno(X) {(_dl_errno) = (X);} #include "sys/syscall.h" |