Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Events #25

Closed
wants to merge 35 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9b52057
init
lmesnik Dec 17, 2020
b8dccaf
Bake buildable events test.
lmesnik Dec 18, 2020
eb0e2a3
More tests fixed.
lmesnik Dec 18, 2020
8aa9a12
Common stuff added. Exception test fixed.
lmesnik Jan 6, 2021
ec44059
MethodExitt tests fixed.
lmesnik Jan 7, 2021
412fbd2
Temp version of MethodExit threaded test.
lmesnik Jan 7, 2021
7a37534
ExceptionCatch fixed.
lmesnik Jan 7, 2021
7f95470
Field events fixed.
lmesnik Jan 7, 2021
033833f
NativeMethodBind fixed
lmesnik Jan 7, 2021
4188866
VMObjectAlloc testt fixed.
lmesnik Jan 7, 2021
9e7e573
Common fixed with agent thread support.
lmesnik Jan 7, 2021
ffd44d7
MonitorContendedEnter updated
lmesnik Jan 7, 2021
199d25f
Merge branch 'fibers' of https://github.com/openjdk/loom into events
lmesnik Jan 7, 2021
b70aa3a
MonitorEnter* tests fixed.
lmesnik Jan 8, 2021
cc14982
Monitor events fixed.
lmesnik Jan 8, 2021
454f1ae
events fixed.
lmesnik Jan 8, 2021
803ec5f
lib names updated to don't match nsk names
lmesnik Jan 8, 2021
7aaf119
build issues fixed
lmesnik Jan 8, 2021
ca42e86
ThreadStart/End added.
lmesnik Jan 8, 2021
d5afb6f
duplicated agent_common.h removed
lmesnik Jan 8, 2021
3a205a1
jcheck fix
lmesnik Jan 8, 2021
2f39a68
Build error fixed.
lmesnik Jan 8, 2021
64eb3a5
test/hotspot/jtreg/serviceability/jvmti/agent_common.h -> test/lib/jd…
lmesnik Jan 12, 2021
0f8e4ed
Split jvmti_common to common + thread.
lmesnik Jan 12, 2021
52b07de
nsk_jvmti_createJVMTIEnv removed
lmesnik Jan 12, 2021
2429b04
More refactoring.
lmesnik Jan 12, 2021
290a006
Test fixed.
lmesnik Jan 12, 2021
a8c16ab
jvmti_env -> jvmti
lmesnik Jan 12, 2021
02f27ae
env -> jni.
lmesnik Jan 12, 2021
03c4415
Renamce 00x -> 0x.
lmesnik Jan 12, 2021
f9823a1
Comment updated.
lmesnik Jan 13, 2021
29b2a0d
test fixed.
lmesnik Jan 13, 2021
4da1b83
Makefile fixed.
lmesnik Jan 13, 2021
e7b3b0a
typo fixed.
lmesnik Jan 13, 2021
1678dd6
vthread test temporary removed.
lmesnik Jan 13, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -448,8 +448,6 @@ JNIEXPORT jint JNI_OnLoad_threadstart002(JavaVM *jvm, char *options, void *reser
}
#endif
jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {

jvmtiError err;
jint res;

res = jvm->GetEnv((void **) &jvmti, JVMTI_VERSION_1_1);