diff options
author | Christopher Faylor <me@cgf.cx> | 2003-08-31 18:26:58 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-08-31 18:26:58 +0000 |
commit | f8e2f358c498417f044e17a5977cc796159bba95 (patch) | |
tree | 612fbe776a4e951183c0c3af4d5472355f0b3c6b /winsup/cygwin/exceptions.cc | |
parent | 110a4b87df64e27ecd07f25198ab44679fce474f (diff) | |
download | cygnal-f8e2f358c498417f044e17a5977cc796159bba95.tar.gz cygnal-f8e2f358c498417f044e17a5977cc796159bba95.tar.bz2 cygnal-f8e2f358c498417f044e17a5977cc796159bba95.zip |
* Makefile.in (MALLOC_OFILES): Always fill in with correct malloc object.
* configure.in: Fill in MALLOC_OFILES with either debugging or regular malloc.
* configure: Regenerate.
* dlmalloc.c: Make various fruitless changes to attempt to get to work.
* dlmalloc.h: Ditto.
* malloc.cc (free): Check malloc pool when debugging.
* path.cc (win32_device_name): Eliminate compiler warning.
* sigproc.cc (sig_dispatch_pending): Remove use of was_pending. Let
thisframe.call_signal_handler decide if handler should be called rather than
using bogus was_pending check.
* exceptions.cc (interrupt_setup): Remove accidentally checked in debugging
code.
* heap.cc (sbrk): Save rounded addess in user_heap_max.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index ba86274de..075b3cc92 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -688,7 +688,6 @@ interrupt_setup (int sig, void *handler, DWORD retaddr, DWORD *retaddr_on_stack, { sigsave.retaddr = retaddr; sigsave.retaddr_on_stack = retaddr_on_stack; -small_printf ("retaddr_on_stack %p\n", retaddr_on_stack); /* FIXME: Not multi-thread aware */ sigsave.oldmask = myself->getsigmask (); sigsave.newmask = sigsave.oldmask | siga.sa_mask | SIGTOMASK (sig); |