mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 11:00:04 +08:00
6b2a9a2fdf
* cygthread.h (cygthread::exit_thread): Declare new method. * fhandler.h (fhandler_tty_master::hThread): Delete. (fhandler_tty_master::output_thread): Define. * fhandler_tty.cc (fhandler_tty_master::fhandler_tty_master): Adjust constructor. (fhandler_tty_master::init): Use cygthread rather than handle. (process_output): Use cygthread method to exit. (fhandler_tty_master::fixup_after_fork): Set output_thread to NULL after fork. (fhandler_tty_master::fixup_after_exec): Set output_thread to NULL after spawn/exec. * tty.cc (tty_list::terminate): Detach from output_thread using cygthread method.
32 lines
729 B
C++
32 lines
729 B
C++
/* cygthread.h
|
|
|
|
Copyright 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
class cygthread
|
|
{
|
|
DWORD avail;
|
|
DWORD id;
|
|
HANDLE h;
|
|
HANDLE ev;
|
|
const char *__name;
|
|
LPTHREAD_START_ROUTINE func;
|
|
VOID *arg;
|
|
static DWORD main_thread_id;
|
|
static DWORD WINAPI runner (VOID *);
|
|
static DWORD WINAPI stub (VOID *);
|
|
public:
|
|
static const char * name (DWORD = 0);
|
|
cygthread (LPTHREAD_START_ROUTINE, LPVOID, const char *);
|
|
cygthread () {};
|
|
static void init ();
|
|
void detach ();
|
|
operator HANDLE ();
|
|
static bool is ();
|
|
void * operator new (size_t);
|
|
void exit_thread ();
|
|
};
|