diff options
author | Christopher Faylor <me@cgf.cx> | 2000-07-12 04:49:07 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-07-12 04:49:07 +0000 |
commit | 5f9316981a7df426730026dfd0eea55303133594 (patch) | |
tree | edcc1972736b7edb2b8cddb960ef04844edab911 /winsup/cygwin/debug.cc | |
parent | a0f7b496ad87e70720c6a1bef0e31b0524444d21 (diff) | |
download | cygnal-5f9316981a7df426730026dfd0eea55303133594.tar.gz cygnal-5f9316981a7df426730026dfd0eea55303133594.tar.bz2 cygnal-5f9316981a7df426730026dfd0eea55303133594.zip |
* debug.cc (thread_stub): Use impure_ptr in place of reent_data.
* dll_init.cc (dll_dllcrt0): Replace erroneous use of local symbol with correct
__cygwin_user_data->impure_ptr.
Diffstat (limited to 'winsup/cygwin/debug.cc')
-rw-r--r-- | winsup/cygwin/debug.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/debug.cc b/winsup/cygwin/debug.cc index 509f98d91..23cd83cba 100644 --- a/winsup/cygwin/debug.cc +++ b/winsup/cygwin/debug.cc @@ -87,7 +87,7 @@ thread_stub (VOID *arg) SIGSEGV or SIGFPE. */ init_exceptions (&except_entry); - set_reent (&reent_data); + set_reent (user_data->impure_ptr); ExitThread (threadfunc (threadarg)); } |