mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 16:21:06 +00:00
Update.
* sysdeps/unix/make-syscalls.sh: Define __OPTIMIZE__ in use of asm_CPP.
This commit is contained in:
parent
beac809a9b
commit
7aba050de9
@ -9,6 +9,7 @@
|
|||||||
* Makeconfig (preprocess-versions): Define ASSEMBLER.
|
* Makeconfig (preprocess-versions): Define ASSEMBLER.
|
||||||
* stdlib/Makefile (isomac-CFLAGS): Define to -O.
|
* stdlib/Makefile (isomac-CFLAGS): Define to -O.
|
||||||
* posix/Makefile (annexc-CFLAGS): Define to -O.
|
* posix/Makefile (annexc-CFLAGS): Define to -O.
|
||||||
|
* sysdeps/unix/make-syscalls.sh: Define __OPTIMIZE__ in use of asm_CPP.
|
||||||
|
|
||||||
2001-09-11 Ulrich Drepper <drepper@redhat.com>
|
2001-09-11 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
|
2001-09-12 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/pthread/timer_delete.c (timer_delete): Thread may be NULL
|
||||||
|
for SIGEV_NONE.
|
||||||
|
* sysdeps/pthread/timer_settime.c (timer_settime): Likewise.
|
||||||
|
|
||||||
2001-09-11 Ulrich Drepper <drepper@redhat.com>
|
2001-09-11 Ulrich Drepper <drepper@redhat.com>
|
||||||
Wolfram Gloger <wg@malloc.de>
|
Wolfram Gloger <wg@malloc.de>
|
||||||
|
|
||||||
* join.c: Protect all communications from and to manager with
|
* join.c: Protect all communications from and to manager with
|
||||||
TEMP_FAILURE_RETRY.
|
TEMP_FAILURE_RETRY.
|
||||||
|
@ -74,8 +74,9 @@ while read file srcfile caller syscall args strong weak; do
|
|||||||
callnum=-
|
callnum=-
|
||||||
eval `{ echo "#include <sysdep.h>";
|
eval `{ echo "#include <sysdep.h>";
|
||||||
echo "callnum=SYS_ify ($syscall)"; } |
|
echo "callnum=SYS_ify ($syscall)"; } |
|
||||||
$asm_CPP - |sed -n -e "/^callnum=.*$syscall/d" \
|
$asm_CPP -D__OPTIMIZE__ - |
|
||||||
-e "/^\(callnum=\)[ ]*\(.*\)/s//\1'\2'/p"`
|
sed -n -e "/^callnum=.*$syscall/d" \
|
||||||
|
-e "/^\(callnum=\)[ ]*\(.*\)/s//\1'\2'/p"`
|
||||||
|
|
||||||
# Derive the number of arguments from the argument signature
|
# Derive the number of arguments from the argument signature
|
||||||
case $args in
|
case $args in
|
||||||
|
Loading…
Reference in New Issue
Block a user