diff options
author | Christopher Faylor <me@cgf.cx> | 2011-05-30 17:16:24 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2011-05-30 17:16:24 +0000 |
commit | de3c57f06e3b8244c44e7203dc50cfad8a68f130 (patch) | |
tree | 12e5b0f64b965f0fe4d372fb034e5e9bdda9015c /winsup/cygwin/dll_init.h | |
parent | 6642f7daa369ede921ce92eb819f01dc58b18b30 (diff) | |
download | cygnal-de3c57f06e3b8244c44e7203dc50cfad8a68f130.tar.gz cygnal-de3c57f06e3b8244c44e7203dc50cfad8a68f130.tar.bz2 cygnal-de3c57f06e3b8244c44e7203dc50cfad8a68f130.zip |
* dll_init.cc (dll_list::append): Eliminate increment of unused tot variable.
* dll_init.h (dll_list::tot): Delete.
(dll_list::populate_all_deps): Delete undefined function.
* fhandler.cc (fhandler_base_overlapped::wait_overlapped): Move EPIPE handling
under error condition.
Diffstat (limited to 'winsup/cygwin/dll_init.h')
-rw-r--r-- | winsup/cygwin/dll_init.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/winsup/cygwin/dll_init.h b/winsup/cygwin/dll_init.h index bf0265303..3f50dcab0 100644 --- a/winsup/cygwin/dll_init.h +++ b/winsup/cygwin/dll_init.h @@ -80,7 +80,6 @@ class dll_list static muto protect; public: dll start; - int tot; int loaded_dlls; int reload_on_fork; dll *operator [] (const PWCHAR name); @@ -92,7 +91,6 @@ public: void reserve_space (); void load_after_fork_impl (HANDLE, dll* which, int retries); dll *find_by_modname (const PWCHAR name); - void populate_all_deps (); void populate_deps (dll* d); void topsort (); void topsort_visit (dll* d, bool goto_tail); |