diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-20 20:10:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-20 20:10:02 +0000 |
commit | 57b47af94b3c886ca65e32c41a9f665baaf823f0 (patch) | |
tree | 7ba1c4dae362d23c75548f5161e7bf463541e0f0 /stdlib | |
parent | f89c41c11634c6971cf001e7b59dc96d540cad65 (diff) | |
download | glibc-57b47af94b3c886ca65e32c41a9f665baaf823f0.tar.gz glibc-57b47af94b3c886ca65e32c41a9f665baaf823f0.tar.xz glibc-57b47af94b3c886ca65e32c41a9f665baaf823f0.zip |
Update.
2005-01-20 Ulrich Drepper <drepper@redhat.com> * posix/execl.c: Do not allocate potentially large buffers on the stack. * posix/execle.c: Likewise. * posix/execlp.c: Likewise. * posix/execlp.c: Likewise. (script_execute): Removed. (allocate_scripts_argv): New function. Called at most once to allocate memory, not every time a script is run. Adjust caller. * sysdeps/generic/wordexp.c (exec_comm): Add a few TEMP_FAILURE_RETRY. Reorganize code to avoid multiple calls to exec_comm_child. (exec_comm_child): Can now be inlined. * posix/Makefile: Add -fomit-frame-pointer for a few more files. * stdlib/Makefile: Likewise.
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/Makefile b/stdlib/Makefile index b766fb8656..2e45ae1b27 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -91,7 +91,7 @@ generated += isomac isomac.out tst-putenvmod.so CFLAGS-bsearch.c = $(uses-callbacks) CFLAGS-msort.c = $(uses-callbacks) CFLAGS-qsort.c = $(uses-callbacks) -CFLAGS-system.c = -fexceptions +CFLAGS-system.c = -fexceptions -fomit-frame-pointer CFLAGS-fmtmsg.c = -fexceptions ifneq (,$(filter %REENTRANT, $(defines))) |