diff options
author | Christopher Faylor <me@cgf.cx> | 2003-09-09 03:11:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-09-09 03:11:31 +0000 |
commit | 3ef50005c759d5dbdb5a7b31730bf836a6519ab0 (patch) | |
tree | 98ecbe813337b26be5f350ef585952df14df6455 /winsup/cygwin/sigproc.cc | |
parent | 51d340e1c801b82e5e8b58b48639d46681d33f4c (diff) | |
download | cygnal-3ef50005c759d5dbdb5a7b31730bf836a6519ab0.tar.gz cygnal-3ef50005c759d5dbdb5a7b31730bf836a6519ab0.tar.bz2 cygnal-3ef50005c759d5dbdb5a7b31730bf836a6519ab0.zip |
* dcrt0.cc (dlL_crt0_1): Set __argc_safe after __argc is absolutely know to be
set.
* exceptions.cc (sig_handle_tty_stop): Don't reset sigCONT event since it is
reset automatically.
* fork.cc (fork): Remove obsolete usage of PID_SPLIT_HEAP.
* include/sys/cygwin.h: Ditto.
* sigproc.cc (sig_send): Use sigframe init method to set frame since it checks
for previous ownership of the frame.
* sigproc.h (sigframe::init): Accept an "is_exception" argument.
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r-- | winsup/cygwin/sigproc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index ce7c38898..795c7f3ef 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -717,7 +717,7 @@ sig_send (_pinfo *p, int sig, DWORD ebp, bool exception) { thiscatch = sigcatch_main; thiscomplete = sigcomplete_main; - thisframe.set (mainthread, ebp, exception); + thisframe.init (mainthread, ebp, exception); todo = getlocal_sigtodo (sig); issem = true; } |