blob: 4809b2bdd8d04636229b7d27466bbd9b0d6e30c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*
* dll.c
*
* Description:
* This translation unit implements DLL initialisation.
*/
/* We use the DLL entry point function to set up per thread storage
specifically to hold the threads own thread ID.
The thread ID is stored by _pthread_start_call().
The thread ID is retrieved by pthread_self().
*/
#include <windows.h>
#include <malloc.h>
#include "pthread.h"
#include "implement.h"
/* Global index for TLS data. */
DWORD _pthread_threadID_TlsIndex;
BOOL WINAPI PthreadsEntryPoint(HINSTANCE dllHandle,
DWORD reason,
LPVOID situation)
{
switch (reason)
{
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
break;
case DLL_PROCESS_ATTACH:
/* Allocate storage for thread admin arrays. */
_pthread_virgins =
(_pthread_t *) malloc(sizeof(_pthread_t) * PTHREAD_THREADS_MAX);
_pthread_reuse =
(pthread_t *) malloc(sizeof(pthread_t) * PTHREAD_THREADS_MAX);
_pthread_win32handle_map =
(pthread_t *) malloc(sizeof(pthread_t) * PTHREAD_THREADS_MAX);
_pthread_threads_mutex_table =
(pthread_mutex_t *) malloc(sizeof(pthread_mutex_t) * PTHREAD_THREADS_MAX);
/* Per thread thread ID storage. */
_pthread_threadID_TlsIndex = TlsAlloc();
if (_pthread_threadID_TlsIndex == 0xFFFFFFFF)
{
return FALSE;
}
break;
case DLL_PROCESS_DETACH:
free(_pthread_threads_mutex_table);
free(_pthread_win32handle_map);
free(_pthread_reuse);
free(_pthread_virgins);
(void) TlsFree(_pthread_threadID_TlsIndex);
break;
default:
return FALSE;
}
return TRUE;
}
|