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/dll_init.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/dll_init.cc')
-rw-r--r-- | winsup/cygwin/dll_init.cc | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/winsup/cygwin/dll_init.cc b/winsup/cygwin/dll_init.cc index 38867e18a..0bf405fa4 100644 --- a/winsup/cygwin/dll_init.cc +++ b/winsup/cygwin/dll_init.cc @@ -138,8 +138,6 @@ add (HMODULE h, char *name, per_process *p, dllType type) static int initOneDll (per_process *p) { - /* global variable user_data must be initialized */ - /* FIXME: init environment (useful?) */ *(p->envptr) = *(user_data->envptr); @@ -439,26 +437,13 @@ LoadedDllIterator::~LoadedDllIterator () { } -//----------------------------------------------------------------------------- -//----------------------------------------------------------------------------- -// the extern symbols - -extern "C" -{ - /* This is an exported copy of environ which can be used by DLLs - which use cygwin.dll. */ - extern struct _reent reent_data; -}; - -extern "C" -int +extern "C" int dll_dllcrt0 (HMODULE h, per_process *p) { - struct _reent reent_data; if (p == NULL) p = &__cygwin_user_data; else - *(p->impure_ptr_ptr) = &reent_data; + *(p->impure_ptr_ptr) = __cygwin_user_data.impure_ptr; /* Partially initialize Cygwin guts for non-cygwin apps. */ if (dynamically_loaded && user_data->magic_biscuit == 0) |