* dll_init.cc (dll_list::detach): Eliminate reliance on passed in dll address.

Infer from module of caller instead.
(cygwin_detach_dll): Ignore dll_index argument.
* dll_init.h (dll_list::detach): Reflect argument change above.
This commit is contained in:
Christopher Faylor
2002-11-14 04:29:39 +00:00
parent a2dea5c333
commit 052990e6b3
3 changed files with 34 additions and 18 deletions

View File

@ -70,7 +70,7 @@ public:
int reload_on_fork;
dll *operator [] (const char *name);
dll *alloc (HINSTANCE, per_process *, dll_type);
void detach (dll *);
void detach (void *);
void init ();
void load_after_fork (HANDLE, dll *);
dll *inext ()