* path.cc (get_device_number): Allow /dev/ttySn to designate a com port.

This commit is contained in:
Christopher Faylor
2000-11-13 04:06:41 +00:00
parent 49421cd9c5
commit 70a11195b9
6 changed files with 13 additions and 6 deletions

View File

@ -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;