c4ec64d76b
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.
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
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;
|
|
bool is_freerange;
|
|
static DWORD main_thread_id;
|
|
static int initialized;
|
|
static DWORD WINAPI runner (VOID *);
|
|
static DWORD WINAPI free_runner (VOID *);
|
|
static DWORD WINAPI stub (VOID *);
|
|
static DWORD WINAPI simplestub (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);
|
|
static void * freerange ();
|
|
void exit_thread ();
|
|
static void terminate ();
|
|
bool SetThreadPriority (int nPriority) {return ::SetThreadPriority (h, nPriority);}
|
|
void zap_h ()
|
|
{
|
|
(void) CloseHandle (h);
|
|
h = NULL;
|
|
}
|
|
|
|
};
|
|
|
|
#define cygself NULL
|