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:
authorChristopher Faylor <me@cgf.cx>2005-09-28 06:43:29 +0400
committerChristopher Faylor <me@cgf.cx>2005-09-28 06:43:29 +0400
commit43634a4158fb0a17940355b47fc9e30d8d412517 (patch)
treefb34a2950b046f6745653de1b6f618853adc3b26 /winsup/cygwin/init.cc
parentee694aea01daee651ebd9c5bdeadc2a1e3a59413 (diff)
* 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.cc7
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;
}