forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForeignThreadExceptionsNative.cpp
More file actions
63 lines (52 loc) · 1.57 KB
/
ForeignThreadExceptionsNative.cpp
File metadata and controls
63 lines (52 loc) · 1.57 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#include "stdio.h"
#include <stdlib.h>
#ifdef _WIN32
#pragma warning(push)
#pragma warning(disable:4265 4577)
#include <thread>
#pragma warning(pop)
#else // _WIN32
#include <pthread.h>
#endif // _WIN32
// Work around typedef redefinition: platformdefines.h defines error_t
// as unsigned while it's defined as int in errno.h.
#define error_t error_t_ignore
#include <platformdefines.h>
#undef error_t
typedef void (*PFNACTION1)();
extern "C" DLL_EXPORT void InvokeCallback(PFNACTION1 callback)
{
callback();
}
#ifndef _WIN32
void* InvokeCallbackUnix(void* callback)
{
InvokeCallback((PFNACTION1)callback);
return NULL;
}
#define AbortIfFail(st) if (st != 0) abort()
#endif // !_WIN32
extern "C" DLL_EXPORT void InvokeCallbackOnNewThread(PFNACTION1 callback)
{
#ifdef _WIN32
std::thread t1(InvokeCallback, callback);
t1.join();
#else // _WIN32
// For Unix, we need to use pthreads to create the thread so that we can set its stack size.
// We need to set the stack size due to the very small (80kB) default stack size on MUSL
// based Linux distros.
pthread_attr_t attr;
int st = pthread_attr_init(&attr);
AbortIfFail(st);
// set stack size to 1.5MB
st = pthread_attr_setstacksize(&attr, 0x180000);
AbortIfFail(st);
pthread_t t;
st = pthread_create(&t, &attr, InvokeCallbackUnix, (void*)callback);
AbortIfFail(st);
st = pthread_join(t, NULL);
AbortIfFail(st);
#endif // _WIN32
}