summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/dll_init.h
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-11-14 04:29:39 +0000
committerChristopher Faylor <me@cgf.cx>2002-11-14 04:29:39 +0000
commit052990e6b3cedbe869a66dd70e41a681a056eb76 (patch)
tree29e83d6f150b20440f80c12c53a3ea55cb45266f /winsup/cygwin/dll_init.h
parenta2dea5c33349d4c5b2c0dfc410ae7536e36c0fac (diff)
downloadcygnal-052990e6b3cedbe869a66dd70e41a681a056eb76.tar.gz
cygnal-052990e6b3cedbe869a66dd70e41a681a056eb76.tar.bz2
cygnal-052990e6b3cedbe869a66dd70e41a681a056eb76.zip
* 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.
Diffstat (limited to 'winsup/cygwin/dll_init.h')
-rw-r--r--winsup/cygwin/dll_init.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/dll_init.h b/winsup/cygwin/dll_init.h
index bc9687bf7..24cd79bf2 100644
--- a/winsup/cygwin/dll_init.h
+++ b/winsup/cygwin/dll_init.h
@@ -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 ()