From: Ulrich Drepper Date: Mon, 27 Jan 2003 20:15:03 +0000 (+0000) Subject: (SYSCALL_ERROR_LABEL): Define. X-Git-Tag: glibc-2.16-ports-merge^2~1445 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c25d936b99e07f3b6733c483be9936ccbf624c79;p=platform%2Fupstream%2Fglibc.git (SYSCALL_ERROR_LABEL): Define. --- diff --git a/sysdeps/unix/sysv/linux/mips/sysdep.h b/sysdeps/unix/sysv/linux/mips/sysdep.h index 1fd64e5..710479a 100644 --- a/sysdeps/unix/sysv/linux/mips/sysdep.h +++ b/sysdeps/unix/sysv/linux/mips/sysdep.h @@ -33,7 +33,15 @@ # define SYS_ify(syscall_name) __NR_/**/syscall_name #endif -#ifndef __ASSEMBLER__ +#ifdef __ASSEMBLER__ + +/* We don't want the label for the error handler to be visible in the symbol + table when we define it here. */ +#ifdef __PIC__ +# define SYSCALL_ERROR_LABEL 99b +#endif + +#else /* ! __ASSEMBLER__ */ /* Define a macro which expands into the inline wrapper code for a system call. */