-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterop.cpp
68 lines (57 loc) · 2.4 KB
/
interop.cpp
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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
//---------------------------------------------------------------------------------------
// Exports that managed code from OpenTelemetry.AutoInstrumentation.dll will
// P/Invoke into
//
// NOTE: Must keep these signatures in sync with the DllImports in
// NativeMethods.cs!
//---------------------------------------------------------------------------------------
#include "cor_profiler.h"
#ifndef _WIN32
#include <dlfcn.h>
#endif
#ifdef _WIN32
// GetAssemblyAndSymbolsBytes is used when injecting the Loader into a .NET Framework application.
EXTERN_C VOID STDAPICALLTYPE GetAssemblyAndSymbolsBytes(BYTE** pAssemblyArray,
int* assemblySize,
BYTE** pSymbolsArray,
int* symbolsSize)
{
return trace::profiler->GetAssemblyAndSymbolsBytes(pAssemblyArray, assemblySize, pSymbolsArray, symbolsSize);
}
#endif
EXTERN_C BOOL STDAPICALLTYPE IsProfilerAttached()
{
return trace::profiler != nullptr && trace::profiler->IsAttached();
}
EXTERN_C VOID STDAPICALLTYPE AddInstrumentations(WCHAR* id, trace::CallTargetDefinition* items, int size)
{
return trace::profiler->AddInstrumentations(id, items, size);
}
EXTERN_C VOID STDAPICALLTYPE AddDerivedInstrumentations(WCHAR* id, trace::CallTargetDefinition* items, int size)
{
return trace::profiler->AddDerivedInstrumentations(id, items, size);
}
EXTERN_C VOID STDAPICALLTYPE ConfigureContinuousProfiler(bool threadSamplingEnabled,
unsigned int threadSamplingInterval,
bool allocationSamplingEnabled,
unsigned int maxMemorySamplesPerMinute)
{
return trace::profiler->ConfigureContinuousProfiler(threadSamplingEnabled, threadSamplingInterval,
allocationSamplingEnabled, maxMemorySamplesPerMinute);
}
#ifndef _WIN32
EXTERN_C void* dddlopen(const char* __file, int __mode)
{
return dlopen(__file, __mode);
}
EXTERN_C char* dddlerror(void)
{
return dlerror();
}
EXTERN_C void* dddlsym(void* __restrict __handle, const char* __restrict __name)
{
return dlsym(__handle, __name);
}
#endif