diff options
author | Christopher Faylor <me@cgf.cx> | 2005-08-28 17:30:34 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-08-28 17:30:34 +0000 |
commit | 453185b136e3c065cd367e3cdf980126b31e709b (patch) | |
tree | f9d4bc2eccb4b24a35d128c124304b8c2eff931a /winsup/cygwin/exceptions.cc | |
parent | a232350855c824c1649c8dc00738878b72022906 (diff) | |
download | cygnal-453185b136e3c065cd367e3cdf980126b31e709b.tar.gz cygnal-453185b136e3c065cd367e3cdf980126b31e709b.tar.bz2 cygnal-453185b136e3c065cd367e3cdf980126b31e709b.zip |
* cygwin.din: Correct readdir_r typo.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index e75ee610a..98539d41d 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -984,11 +984,11 @@ set_signal_mask (sigset_t newmask, sigset_t& oldmask) sigproc_printf ("oldmask %p, newmask %p, mask_bits %p", oldmask, newmask, mask_bits); oldmask = newmask; + mask_sync.release (); if (mask_bits) sig_dispatch_pending (true); else sigproc_printf ("not calling sig_dispatch_pending"); - mask_sync.release (); return; } |