diff options
author | Christopher Faylor <me@cgf.cx> | 2005-09-28 02:43:29 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-09-28 02:43:29 +0000 |
commit | 43634a4158fb0a17940355b47fc9e30d8d412517 (patch) | |
tree | fb34a2950b046f6745653de1b6f618853adc3b26 /winsup/cygwin/init.cc | |
parent | ee694aea01daee651ebd9c5bdeadc2a1e3a59413 (diff) | |
download | cygnal-43634a4158fb0a17940355b47fc9e30d8d412517.tar.gz cygnal-43634a4158fb0a17940355b47fc9e30d8d412517.tar.bz2 cygnal-43634a4158fb0a17940355b47fc9e30d8d412517.zip |
* init.cc (prime_threads): Make this static, as it should be.
(dll_entry): Apply cosmetic changes to define closer to the way MSDN suggests.
Diffstat (limited to 'winsup/cygwin/init.cc')
-rw-r--r-- | winsup/cygwin/init.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/winsup/cygwin/init.cc b/winsup/cygwin/init.cc index 478d83105..96dda7c1e 100644 --- a/winsup/cygwin/init.cc +++ b/winsup/cygwin/init.cc @@ -47,7 +47,7 @@ calibration_thread (VOID *arg) When it starts, a call will be made to dll_entry which will call munge_threadfunc looking for the calibration thread offset on the stack. This offset will be stored and used by all executing cygwin processes. */ -void +static void prime_threads () { if (!threadfunc_ix[0]) @@ -137,7 +137,7 @@ extern void __stdcall dll_crt0_0 (); HMODULE NO_COPY cygwin_hmodule; -extern "C" int WINAPI +extern "C" BOOL WINAPI dll_entry (HANDLE h, DWORD reason, void *static_load) { BOOL is_wow64_proc = FALSE; @@ -173,5 +173,6 @@ dll_entry (HANDLE h, DWORD reason, void *static_load) _my_tls.remove (0); break; } - return 1; + + return TRUE; } |