Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-11-13 07:06:41 +0300
committerChristopher Faylor <me@cgf.cx>2000-11-13 07:06:41 +0300
commit70a11195b9bf3617e3dbe4b9de034b3792c65621 (patch)
tree3d65dd15dc384556623d9735b5f56d7811701ff5 /winsup/cygwin/exceptions.cc
parent49421cd9c5d29b29b4da341a75855b00fbab9b3d (diff)
* path.cc (get_device_number): Allow /dev/ttySn to designate a com port.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r--winsup/cygwin/exceptions.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index fcdf7c44e..e5c72c04c 100644
--- a/winsup/cygwin/exceptions.cc
+++ b/winsup/cygwin/exceptions.cc
@@ -557,7 +557,7 @@ stack (void)
int __stdcall
handle_sigsuspend (sigset_t tempmask)
{
- sigframe thisframe (mainthread);
+ sigframe thisframe (mainthread);
sigset_t oldmask = myself->getsigmask (); // Remember for restoration
set_process_mask (tempmask & ~SIG_NONMASKABLE);// Let signals we're
@@ -861,7 +861,7 @@ ctrl_c_handler (DWORD type)
extern "C" void __stdcall
set_process_mask (sigset_t newmask)
{
- sigframe thisframe (mainthread);
+ sigframe thisframe (mainthread);
mask_sync->acquire (INFINITE);
sigset_t oldmask = myself->getsigmask ();
newmask &= ~SIG_NONMASKABLE;