diff options
author | Christopher Faylor <me@cgf.cx> | 2002-11-05 02:58:10 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-11-05 02:58:10 +0000 |
commit | 43a299881f1b6e3a7ea900b0c818f9029e13e107 (patch) | |
tree | f6f6414bffb285551d5d1652843a885c6fb6c1c0 | |
parent | d28888120d6c2e204d7bb494b99d73732745d7f8 (diff) | |
download | cygnal-43a299881f1b6e3a7ea900b0c818f9029e13e107.tar.gz cygnal-43a299881f1b6e3a7ea900b0c818f9029e13e107.tar.bz2 cygnal-43a299881f1b6e3a7ea900b0c818f9029e13e107.zip |
* sigproc.cc (WAIT_SIG_PRIORITY): Bump to highest priority.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/sigproc.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index be757631e..4e96ee44d 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2002-11-04 Christopher Faylor <cgf@redhat.com> + * sigproc.cc (WAIT_SIG_PRIORITY): Bump to highest priority. + +2002-11-04 Christopher Faylor <cgf@redhat.com> + * include/cygwin/version.h: Bump DLL minor number. 2002-11-03 Christopher Faylor <cgf@redhat.com> diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index 5eeef7f35..74fb35c07 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -41,7 +41,7 @@ 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_NORMAL +#define WAIT_SIG_PRIORITY THREAD_PRIORITY_HIGHEST #define TOTSIGS (NSIG + __SIGOFFSET) |