diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-04 01:28:04 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-04 01:28:04 +0000 |
commit | 4547dee327b2a992fb5c7a39df41d19c1fc0bae6 (patch) | |
tree | 2befc8a95eadfa856af6e13682518516dafa19cb /sysdeps | |
parent | 6111cd0e8a327ee3084c67e86b6ad050c6d83096 (diff) | |
download | glibc-4547dee327b2a992fb5c7a39df41d19c1fc0bae6.zip glibc-4547dee327b2a992fb5c7a39df41d19c1fc0bae6.tar.gz glibc-4547dee327b2a992fb5c7a39df41d19c1fc0bae6.tar.bz2 |
2002-08-03 Roland McGrath <roland@redhat.com>
* include/libc-symbols.h: Fix [__ASSEMBLY__] -> [__ASSEMBLER__].
[__ASSEMBLER__] (hidden_weak): Define using hidden_def, or to empty.
[__ASSEMBLER__] (HIDDEN_JUMPTARGET): New macro.
* sysdeps/unix/sysv/linux/i386/makecontext.S: Use it for exit.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/makecontext.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/makecontext.S b/sysdeps/unix/sysv/linux/i386/makecontext.S index 56b5537..ec49b74 100644 --- a/sysdeps/unix/sysv/linux/i386/makecontext.S +++ b/sysdeps/unix/sysv/linux/i386/makecontext.S @@ -1,5 +1,5 @@ /* Create new context. - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001,02 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2001. @@ -104,7 +104,7 @@ L(exitcode): exit the program with the return error value (-1). */ 2: pushl %eax - call JUMPTARGET(exit) + call HIDDEN_JUMPTARGET(exit) /* The 'exit' call should never return. In case it does cause the process to terminate. */ hlt |