2 * msvcrt.dll initialisation functions
4 * Copyright 2000 Jon Griffiths
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
27 DWORD msvcrt_tls_index;
29 static inline BOOL msvcrt_init_tls(void);
30 static inline BOOL msvcrt_free_tls(void);
31 const char* msvcrt_get_reason(DWORD reason);
33 /*********************************************************************
36 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
40 TRACE("(%p, %s, %p) pid(%lx), tid(%lx), tls(%ld)\n",
41 hinstDLL, msvcrt_get_reason(fdwReason), lpvReserved,
42 GetCurrentProcessId(), GetCurrentThreadId(),
43 (long)msvcrt_tls_index);
47 case DLL_PROCESS_ATTACH:
48 if (!msvcrt_init_tls())
50 msvcrt_init_mt_locks();
52 msvcrt_init_console();
54 msvcrt_init_signals();
55 MSVCRT_setlocale(0, "C");
56 TRACE("finished process init\n");
58 case DLL_THREAD_ATTACH:
60 case DLL_PROCESS_DETACH:
61 msvcrt_free_mt_locks();
63 msvcrt_free_console();
65 msvcrt_free_signals();
66 if (!msvcrt_free_tls())
68 TRACE("finished process free\n");
70 case DLL_THREAD_DETACH:
72 tls = TlsGetValue(msvcrt_tls_index);
75 HeapFree(GetProcessHeap(),0,tls->efcvt_buffer);
76 HeapFree(GetProcessHeap(),0,tls->asctime_buffer);
77 HeapFree(GetProcessHeap(),0,tls->wasctime_buffer);
79 HeapFree(GetProcessHeap(), 0, tls);
80 TRACE("finished thread free\n");
86 static inline BOOL msvcrt_init_tls(void)
88 msvcrt_tls_index = TlsAlloc();
90 if (msvcrt_tls_index == TLS_OUT_OF_INDEXES)
92 ERR("TlsAlloc() failed!\n");
98 static inline BOOL msvcrt_free_tls(void)
100 if (!TlsFree(msvcrt_tls_index))
102 ERR("TlsFree() failed!\n");
108 const char* msvcrt_get_reason(DWORD reason)
112 case DLL_PROCESS_ATTACH: return "DLL_PROCESS_ATTACH";
113 case DLL_PROCESS_DETACH: return "DLL_PROCESS_DETACH";
114 case DLL_THREAD_ATTACH: return "DLL_THREAD_ATTACH";
115 case DLL_THREAD_DETACH: return "DLL_THREAD_DETACH";
121 /*********************************************************************
122 * $I10_OUTPUT (MSVCRT.@)
123 * Function not really understood but needed to make the DLL work
125 void MSVCRT_I10_OUTPUT(void)
127 /* FIXME: This is probably data, not a function */
128 /* no it is a function. I10 is an Int of 10 bytes */
129 /* also known as 80 bit flotaing point (long double */
130 /* for some compilers, not MSVC) */
133 /*********************************************************************
134 * _adjust_fdiv (MSVCRT.@)
135 * Used by the MSVC compiler to work around the Pentium FDIV bug.
137 int MSVCRT__adjust_fdiv = 0;