diff options
author | Christopher Faylor <me@cgf.cx> | 2004-02-15 02:44:16 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-02-15 02:44:16 +0000 |
commit | 955bf2ee964f94a015257cf670538f36e10dbe31 (patch) | |
tree | ff06f1e9ddccec2c9847f512ecda091962076085 /winsup | |
parent | 968bdf96b19cedb6cf8e4fd336edb17425e68cd8 (diff) | |
download | cygnal-955bf2ee964f94a015257cf670538f36e10dbe31.tar.gz cygnal-955bf2ee964f94a015257cf670538f36e10dbe31.tar.bz2 cygnal-955bf2ee964f94a015257cf670538f36e10dbe31.zip |
* Makefile.in: Compile syscalls.o with -fomit-frame-pointer.
* sigproc.cc: Eliminate unused variable.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/cygwin/Makefile.in | 1 | ||||
-rw-r--r-- | winsup/cygwin/sigproc.cc | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 50c0060de..e1d1fde5d 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,9 @@ +2004-02-14 Christopher Faylor <cgf@redhat.com> + + * Makefile.in: Compile syscalls.o with -fomit-frame-pointer. + + * sigproc.cc: Eliminate unused variable. + 2004-02-14 Corinna Vinschen <corinna@vinschen.de> * getopt.c: Replace with latest NetBSD version 1.16. Keep Cygwin diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index 887ab1e44..5db3f92ae 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -256,6 +256,7 @@ regexec_CFLAGS=-fomit-frame-pointer regfree_CFLAGS=-fomit-frame-pointer shared_CFLAGS:=-fomit-frame-pointer smallprint_CFLAGS:=-fomit-frame-pointer +syscalls_CFLAGS:=-fomit-frame-pointer sysconf_CFLAGS:=-fomit-frame-pointer uinfo_CFLAGS:=-fomit-frame-pointer endif diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index 8a4187327..993b0ec10 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -89,7 +89,6 @@ HANDLE NO_COPY signal_arrived; // Event signaled when a signal has Static DWORD proc_loop_wait = 1000; // Wait for subprocesses to exit -Static HANDLE sendsig_tome; HANDLE NO_COPY sigCONT; // Used to "STOP" a process Static cygthread *hwait_sig; // Handle of wait_sig thread Static cygthread *hwait_subproc; // Handle of sig_subproc thread |