diff options
author | Christopher Faylor <me@cgf.cx> | 2000-04-15 03:52:24 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-04-15 03:52:24 +0000 |
commit | eed11cf2bb21ad938cfdd73e21174fe987b23841 (patch) | |
tree | 04fdecf1ba5c0eef22ee7a2722dc5b1419a0ea6e /winsup/cygwin/debug.cc | |
parent | 405713cfb3709d4f6422c8cdf4cc54412ca6225c (diff) | |
download | newlib-eed11cf2bb21ad938cfdd73e21174fe987b23841.zip newlib-eed11cf2bb21ad938cfdd73e21174fe987b23841.tar.gz newlib-eed11cf2bb21ad938cfdd73e21174fe987b23841.tar.bz2 |
* fhandler_console.cc (keytable): Add support for keypad 5 key, which MS seems
to think is equivalent to VK_CLEAR.
* debug.cc (thread_stub): Eliminate initialization of reent stuff.
* init.cc (dll_entry): Move it here.
Diffstat (limited to 'winsup/cygwin/debug.cc')
-rw-r--r-- | winsup/cygwin/debug.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/winsup/cygwin/debug.cc b/winsup/cygwin/debug.cc index 99fe115..255d0ae 100644 --- a/winsup/cygwin/debug.cc +++ b/winsup/cygwin/debug.cc @@ -83,16 +83,6 @@ thread_stub (VOID *arg) /* Give up our slot in the start_buf array */ InterlockedExchange (&((thread_start *) arg)->notavail, 0); -#ifdef _MT_SAFE - /* marco@ddi.nl: Needed for the reent's of this local dll thread - I assume that the local threads are using the reent structure of - the main thread - */ - if ( !TlsSetValue(user_data->threadinterface->reent_index, - &user_data->threadinterface->reents) ) - api_fatal(" Sig proc MT init failed\n"); -#endif - /* Initialize this threads ability to respond to things like SIGSEGV or SIGFPE. */ init_exceptions (&except_entry); |