diff options
author | Christopher Faylor <me@cgf.cx> | 2004-05-17 15:27:56 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-05-17 15:27:56 +0000 |
commit | 641654f72a412df1dfe97890bdffbb8b5fa74eb2 (patch) | |
tree | a7e180f0c34ec1ff263e60f439777b0e5f3e5698 /winsup/cygwin/fhandler_tty.cc | |
parent | fb4489a53f1f770ac7159fb38dceb480b99fb1cc (diff) | |
download | cygnal-641654f72a412df1dfe97890bdffbb8b5fa74eb2.tar.gz cygnal-641654f72a412df1dfe97890bdffbb8b5fa74eb2.tar.bz2 cygnal-641654f72a412df1dfe97890bdffbb8b5fa74eb2.zip |
Change the name "title_mutex" to "tty_mutex" throughout.
* tty.h (tty_list::allocate_tty): Turn argument into a boolean.
* tty.cc (tty_list::init): Protect entire allocation operation with tty_mutex
(formerly title_mutex) to protect against allocation races.
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r-- | winsup/cygwin/fhandler_tty.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 6233971cb..8b98c2dba 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -1157,7 +1157,7 @@ fhandler_pty_master::fhandler_pty_master () int fhandler_pty_master::open (int flags, mode_t) { - int ntty = cygwin_shared->tty.allocate_tty (0); + int ntty = cygwin_shared->tty.allocate_tty (false); if (ntty < 0) return 0; |