diff options
author | Christopher Faylor <me@cgf.cx> | 2006-02-23 19:21:21 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-02-23 19:21:21 +0000 |
commit | 7fbfec2b642a0f2560cd4840bab76285b17c3fd0 (patch) | |
tree | 16067604f6876513595616ee2e1897e2ed140b64 /winsup/cygwin/hookapi.cc | |
parent | 7db9cdd24e884d70f3444fcd3abdf87b0df24479 (diff) | |
download | cygnal-7fbfec2b642a0f2560cd4840bab76285b17c3fd0.tar.gz cygnal-7fbfec2b642a0f2560cd4840bab76285b17c3fd0.tar.bz2 cygnal-7fbfec2b642a0f2560cd4840bab76285b17c3fd0.zip |
* winsup.h (cygwin_hmodule): Declare.
* exceptions.cc (inside_kernel): Reverse return values to reflect function
name. Return true if we're in cygwin1.dll or if we're executing in dll_entry.
(_cygtls::interrupt_now): Reflect reversal of inside_kernel return value.
* hookapi.cc (cygwin_hmodule): Remove declaration.
* init.cc (dll_entry): Use in_dllentry global to record that we are executing
in dllentry.
Diffstat (limited to 'winsup/cygwin/hookapi.cc')
-rw-r--r-- | winsup/cygwin/hookapi.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/hookapi.cc b/winsup/cygwin/hookapi.cc index 2ef1eea47..a58814e6b 100644 --- a/winsup/cygwin/hookapi.cc +++ b/winsup/cygwin/hookapi.cc @@ -111,7 +111,6 @@ RedirectIAT (function_hook& fh, PIMAGE_IMPORT_DESCRIPTOR pImportDesc, void get_export (function_hook& fh) { - extern HMODULE cygwin_hmodule; PIMAGE_DOS_HEADER pdh = (PIMAGE_DOS_HEADER) cygwin_hmodule; if (pdh->e_magic != IMAGE_DOS_SIGNATURE) return; |