Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-07-12 08:49:07 +0400
committerChristopher Faylor <me@cgf.cx>2000-07-12 08:49:07 +0400
commit5f9316981a7df426730026dfd0eea55303133594 (patch)
treeedcc1972736b7edb2b8cddb960ef04844edab911 /winsup/cygwin/debug.cc
parenta0f7b496ad87e70720c6a1bef0e31b0524444d21 (diff)
* 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.cc2
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));
}