-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdldetector.hpp
38 lines (31 loc) · 1 KB
/
dldetector.hpp
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
#pragma once
#include <jvmti.h>
#include <iostream>
class SafetyJvmtiMonitorUsage{
private:
jvmtiEnv *env;
jvmtiMonitorUsage usage;
public:
SafetyJvmtiMonitorUsage(jvmtiEnv *jvmti) : usage({0}), env(jvmti) {}
~SafetyJvmtiMonitorUsage(){
if(usage.waiters != NULL){
env->Deallocate(reinterpret_cast<unsigned char *>(usage.waiters));
}
if(usage.notify_waiters != NULL){
env->Deallocate(reinterpret_cast<unsigned char *>(usage.notify_waiters));
}
}
constexpr jvmtiMonitorUsage* operator -> () noexcept { return &usage; }
constexpr jvmtiMonitorUsage* operator & () noexcept { return &usage; }
};
#define CHECK_WITH_RETURN(jvmti, the_call) \
{ \
jvmtiError result = jvmti->the_call; \
if(result != JVMTI_ERROR_NONE){ \
char *name; \
jvmti->GetErrorName(result, &name); \
std::cerr << "dldetector: " << name << std::endl; \
jvmti->Deallocate(reinterpret_cast<unsigned char *>(name)); \
return result; \
} \
}