summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler_tty.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-10-09 05:55:40 +0000
committerChristopher Faylor <me@cgf.cx>2002-10-09 05:55:40 +0000
commitc4ec64d76b9650b92d4c9f566fbac788c2d3fd46 (patch)
tree2b29dcff1825894fc9ac805e83546c6f3e0772f2 /winsup/cygwin/fhandler_tty.cc
parent7da53596cf1385616721180b48b2159802045d1c (diff)
downloadcygnal-c4ec64d76b9650b92d4c9f566fbac788c2d3fd46.tar.gz
cygnal-c4ec64d76b9650b92d4c9f566fbac788c2d3fd46.tar.bz2
cygnal-c4ec64d76b9650b92d4c9f566fbac788c2d3fd46.zip
* cygthread.cc (cygthread::stub): Don't create an event for "cygself" threads.
Assume that they exit via an ExitThread call. * cygthread.h (cygthread::SetThreadPriority): New function. (cygthread::zap_h): New function. * dcrt0.cc (do_exit): Move cygthread::terminate earlier and establish exit_state guard. * fhandler.h (fhandler_tty_master::output_thread): Delete. * fhandler_tty.cc (fhandler_tty_master::init): Set priority for threads via method. Zap handles when done. Don't treat process_output specially. (process_output): Call ExitThread directly. (fhandler_tty_master::fixup_after_fork): Don't worry about output_thread. (fhandler_tty_master::fixup_after_exec): Ditto. * sigproc.cc (proc_terminate): Don't detach from hwait_subproc. Just let it exit. (sigproc_init): Close thread handle after initialization. (wait_sig): Use GetCurrentThread() as SetThreadPriority call rather than *event* handle. Call ExitThread directly on termination. (wait_subproc): Call ExitThread directly on termination. * tty.cc (tty_list::terminate): Don't attempt t detach from output_thread.
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r--winsup/cygwin/fhandler_tty.cc27
1 files changed, 13 insertions, 14 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc
index 9c2bb7f49..a8d6df2cc 100644
--- a/winsup/cygwin/fhandler_tty.cc
+++ b/winsup/cygwin/fhandler_tty.cc
@@ -36,7 +36,7 @@ static DWORD WINAPI process_output (void *); // Output queue thread
static DWORD WINAPI process_ioctl (void *); // Ioctl requests thread
fhandler_tty_master::fhandler_tty_master (int unit)
- : fhandler_pty_master (FH_TTYM, unit), console (NULL), output_thread (NULL)
+ : fhandler_pty_master (FH_TTYM, unit), console (NULL)
{
}
@@ -62,14 +62,17 @@ fhandler_tty_master::init (int ntty)
inuse = get_ttyp ()->create_inuse (TTY_MASTER_ALIVE);
cygthread *h;
- h = new cygthread (process_input, NULL, "ttyin");
- SetThreadPriority (*h, THREAD_PRIORITY_HIGHEST);
+ h = new cygthread (process_input, cygself, "ttyin");
+ h->SetThreadPriority (THREAD_PRIORITY_HIGHEST);
+ h->zap_h ();
- h = new cygthread (process_ioctl, NULL, "ttyioctl");
- SetThreadPriority (*h, THREAD_PRIORITY_HIGHEST);
+ h = new cygthread (process_ioctl, cygself, "ttyioctl");
+ h->SetThreadPriority (THREAD_PRIORITY_HIGHEST);
+ h->zap_h ();
- output_thread = new cygthread (process_output, cygself, "ttyout");
- SetThreadPriority (*output_thread, THREAD_PRIORITY_HIGHEST);
+ h = new cygthread (process_output, cygself, "ttyout");
+ h->SetThreadPriority (THREAD_PRIORITY_HIGHEST);
+ h->zap_h ();
return 0;
}
@@ -368,9 +371,9 @@ out:
}
static DWORD WINAPI
-process_output (void *self)
+process_output (void *)
{
- char buf[OUT_BUFFER_SIZE*2];
+ char buf[OUT_BUFFER_SIZE * 2];
for (;;)
{
@@ -379,9 +382,7 @@ process_output (void *self)
{
if (n < 0)
termios_printf ("ReadFile %E");
- cygthread *t = (cygthread *) self;
- tty_master->output_thread = NULL;
- t->exit_thread ();
+ ExitThread (0);
}
n = tty_master->console->write ((void *) buf, (size_t) n);
tty_master->get_ttyp ()->write_error = n == -1 ? get_errno () : 0;
@@ -1167,7 +1168,6 @@ fhandler_tty_master::fixup_after_fork (HANDLE child)
{
this->fhandler_pty_master::fixup_after_fork (child);
console->fixup_after_fork (child);
- output_thread = NULL; // It's unreachable now
}
void
@@ -1175,7 +1175,6 @@ fhandler_tty_master::fixup_after_exec (HANDLE)
{
console->close ();
init_console ();
- output_thread = NULL; // It's unreachable now
}
int