* init.cc (prime_threads): Make this static, as it should be.

(dll_entry): Apply cosmetic changes to define closer to the way MSDN suggests.
This commit is contained in:
Christopher Faylor 2005-09-28 02:43:29 +00:00
parent ee694aea01
commit 43634a4158
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2005-09-27 Christopher Faylor <cgf@timesys.com>
* init.cc (prime_threads): Make this static, as it should be.
(dll_entry): Apply cosmetic changes to define closer to the way MSDN
suggests.
2005-09-27 Corinna Vinschen <corinna@vinschen.de> 2005-09-27 Corinna Vinschen <corinna@vinschen.de>
* pthread.cc (mangle_sem_name): Use cygheap->shared_prefix instead * pthread.cc (mangle_sem_name): Use cygheap->shared_prefix instead

View File

@ -47,7 +47,7 @@ calibration_thread (VOID *arg)
When it starts, a call will be made to dll_entry which will call munge_threadfunc 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 looking for the calibration thread offset on the stack. This offset will
be stored and used by all executing cygwin processes. */ be stored and used by all executing cygwin processes. */
void static void
prime_threads () prime_threads ()
{ {
if (!threadfunc_ix[0]) if (!threadfunc_ix[0])
@ -137,7 +137,7 @@ extern void __stdcall dll_crt0_0 ();
HMODULE NO_COPY cygwin_hmodule; HMODULE NO_COPY cygwin_hmodule;
extern "C" int WINAPI extern "C" BOOL WINAPI
dll_entry (HANDLE h, DWORD reason, void *static_load) dll_entry (HANDLE h, DWORD reason, void *static_load)
{ {
BOOL is_wow64_proc = FALSE; BOOL is_wow64_proc = FALSE;
@ -173,5 +173,6 @@ dll_entry (HANDLE h, DWORD reason, void *static_load)
_my_tls.remove (0); _my_tls.remove (0);
break; break;
} }
return 1;
return TRUE;
} }