diff options
Diffstat (limited to 'winsup/cygwin/fhandler_termios.cc')
-rw-r--r-- | winsup/cygwin/fhandler_termios.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler_termios.cc b/winsup/cygwin/fhandler_termios.cc index 1786e49c9..6a4d666a0 100644 --- a/winsup/cygwin/fhandler_termios.cc +++ b/winsup/cygwin/fhandler_termios.cc @@ -193,9 +193,12 @@ fhandler_termios::bg_check (int sig) return bg_eof; } + threadlist_t *tl_entry; + tl_entry = cygheap->find_tls (_main_tls); int sigs_ignored = ((void *) global_sigs[sig].sa_handler == (void *) SIG_IGN) || (_main_tls->sigmask & SIGTOMASK (sig)); + cygheap->unlock_tls (tl_entry); /* If the process is ignoring SIGTT*, then background IO is OK. If the process is not ignoring SIGTT*, then the sig is to be sent to |