diff options
author | Christopher Faylor <me@cgf.cx> | 2012-08-15 19:07:42 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2012-08-15 19:07:42 +0000 |
commit | 806e732c016ba1662c7a4fa0c5270195932b8474 (patch) | |
tree | 6ddfb832a31732a730e5dcc62edebdc843fac3d1 /winsup/cygwin/exceptions.cc | |
parent | 879f3ad5eefc0cb914e7fed1a219ebb11c995a99 (diff) | |
download | cygnal-806e732c016ba1662c7a4fa0c5270195932b8474.tar.gz cygnal-806e732c016ba1662c7a4fa0c5270195932b8474.tar.bz2 cygnal-806e732c016ba1662c7a4fa0c5270195932b8474.zip |
Rename cancelable_wait -> cygwait throughout.
* DevNotes: Add entry cgf-000015.
* cygwait.h (cygwait): Don't allow an optional PLARGE_INTERGER argument.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 6de1f16b9..15ef965ac 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -708,7 +708,7 @@ handle_sigsuspend (sigset_t tempmask) sigproc_printf ("oldmask %p, newmask %p", oldmask, tempmask); pthread_testcancel (); - cancelable_wait (NULL, cw_infinite, cw_cancel | cw_cancel_self | cw_sig_eintr); + cygwait (NULL, cw_infinite, cw_cancel | cw_cancel_self | cw_sig_eintr); set_sig_errno (EINTR); // Per POSIX @@ -739,7 +739,7 @@ sig_handle_tty_stop (int sig) sigproc_printf ("process %d stopped by signal %d", myself->pid, sig); /* FIXME! This does nothing to suspend anything other than the main thread. */ - DWORD res = cancelable_wait (NULL, cw_infinite, cw_sig_eintr); + DWORD res = cygwait (NULL, cw_infinite, cw_sig_eintr); switch (res) { case WAIT_SIGNALED: |