diff options
author | Christopher Faylor <me@cgf.cx> | 2002-11-22 04:43:47 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-11-22 04:43:47 +0000 |
commit | 13af9a149da1a97fc7845466ce652427a0765944 (patch) | |
tree | c28aabca00a9b95671f6e3127c9dd5dda7a042db /winsup/cygwin/sigproc.cc | |
parent | 505746ad22f5f15466be71fafb03952587165461 (diff) | |
download | cygnal-13af9a149da1a97fc7845466ce652427a0765944.tar.gz cygnal-13af9a149da1a97fc7845466ce652427a0765944.tar.bz2 cygnal-13af9a149da1a97fc7845466ce652427a0765944.zip |
* exceptions.cc (sigthread::get_winapi_lock): Just do standard 'give up
timeslice' wait.
(setup_handler): Revamp YA to attempt to deliver signal multiple times on
failure rather than punting to wait_sig.
* miscfuncs.cc (low_priority_sleep): Accept INFINITE sleep to mean "don't reset
the priority after setting it to idle". Return previous priority.
* winsup.h (SLEEP_0_STAY_LOW): Define.
(low_priority_sleep): Return an int.
* sigproc.h: Define WAIT_SIG_PRIORITY here.
* sigproc.cc: Remove WAIT_SIG_PRIORITY definition.
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r-- | winsup/cygwin/sigproc.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index 5f4d4c07a..aeb51f264 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -41,8 +41,6 @@ details. */ #define WSPX 20000 // Wait for wait_sig to terminate #define WWSP 20000 // Wait for wait_subproc to terminate -#define WAIT_SIG_PRIORITY THREAD_PRIORITY_TIME_CRITICAL - #define TOTSIGS (NSIG + __SIGOFFSET) #define wake_wait_subproc() SetEvent (events[0]) |