blob: 9f63d178f4c64fcfa9cbd9ed18f7e91efee966ec (
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
|
#include "EXTERN.h"
#include "perl.h"
#include "win32/win32thread.h"
void
init_thread_intern(struct thread *thr)
{
DuplicateHandle(GetCurrentProcess(),
GetCurrentThread(),
GetCurrentProcess(),
&thr->self,
0,
FALSE,
DUPLICATE_SAME_ACCESS);
if ((thr_key = TlsAlloc()) == TLS_OUT_OF_INDEXES)
croak("panic: TlsAlloc");
if (TlsSetValue(thr_key, (LPVOID) thr) != TRUE)
croak("panic: TlsSetValue");
}
int
thread_create(struct thread *thr, THREAD_RET_TYPE (*fn)(void *))
{
DWORD junk;
MUTEX_LOCK(&thr->mutex);
thr->self = CreateThread(NULL, 0, fn, (void*)thr, 0, &junk);
MUTEX_UNLOCK(&thr->mutex);
return thr->self ? 0 : -1;
}
|