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:
authorCorinna Vinschen <corinna@vinschen.de>2012-02-08 21:35:02 +0400
committerCorinna Vinschen <corinna@vinschen.de>2012-02-08 21:35:02 +0400
commit8f4ea5f005c7fe645048e5de3ed11d2744d89028 (patch)
tree588f7077f9cc4b83bd664f63984b1545b9fe6e78 /winsup/cygwin/dll_init.h
parent25e67cd63432ad01dc7a58de0a0f562622a2d6cc (diff)
* dll_init.cc: Throughout, drop usage of modname in favor of name.
(dll_list::find_by_modname): Remove. (dll_list::alloc): Only store module basename in name. Add comment to explain why. Simplify address check. Fix formatting in comment. * dll_init.h (struct dll): Drop modname and find_by_modname.
Diffstat (limited to 'winsup/cygwin/dll_init.h')
-rw-r--r--winsup/cygwin/dll_init.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/winsup/cygwin/dll_init.h b/winsup/cygwin/dll_init.h
index d1be1622a..fcb84eb6f 100644
--- a/winsup/cygwin/dll_init.h
+++ b/winsup/cygwin/dll_init.h
@@ -54,7 +54,6 @@ struct dll
dll_type type;
long ndeps;
dll** deps;
- PWCHAR modname;
DWORD image_size;
void* preferred_base;
WCHAR name[1];
@@ -90,7 +89,6 @@ public:
void load_after_fork (HANDLE);
void reserve_space ();
void load_after_fork_impl (HANDLE, dll* which, int retries);
- dll *find_by_modname (const PWCHAR name);
void populate_deps (dll* d);
void topsort ();
void topsort_visit (dll* d, bool goto_tail);