mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-25 04:01:10 +00:00
Update.
2000-01-11 Andreas Schwab <schwab@suse.de> * sysdeps/mips/__longjmp.c (__longjmp): Change call to abort into infinite loop to avoid pulling in stdio in the dynamic linker.
This commit is contained in:
parent
22d12a6939
commit
aa20086398
@ -1,3 +1,8 @@
|
|||||||
|
2000-01-11 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/mips/__longjmp.c (__longjmp): Change call to abort into
|
||||||
|
infinite loop to avoid pulling in stdio in the dynamic linker.
|
||||||
|
|
||||||
2000-01-10 Andreas Jaeger <aj@suse.de>
|
2000-01-10 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
* sysdeps/mips/dl-machine.h (elf_machine_matches_host): Follow
|
* sysdeps/mips/dl-machine.h (elf_machine_matches_host): Follow
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1992, 1995, 1997 Free Software Foundation, Inc.
|
/* Copyright (C) 1992, 1995, 1997, 2000 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Brendan Kehoe (brendan@zen.org).
|
Contributed by Brendan Kehoe (brendan@zen.org).
|
||||||
|
|
||||||
@ -79,5 +79,6 @@ __longjmp (env, val_arg)
|
|||||||
|
|
||||||
asm volatile ("j $31");
|
asm volatile ("j $31");
|
||||||
|
|
||||||
abort ();
|
/* Avoid `volatile function does return' warnings. */
|
||||||
|
for (;;);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user