| 131 | } |
| 132 | |
| 133 | void Profiler::onThreadStart(jvmtiEnv* jvmti, JNIEnv* jni, jthread thread) { |
| 134 | if (_thread_filter.enabled()) { |
| 135 | _thread_filter.remove(OS::threadId()); |
| 136 | } |
| 137 | updateThreadName(jvmti, jni, thread); |
| 138 | } |
| 139 | |
| 140 | void Profiler::onThreadEnd(jvmtiEnv* jvmti, JNIEnv* jni, jthread thread) { |
| 141 | if (_thread_filter.enabled()) { |
no test coverage detected