equal
deleted
inserted
replaced
988 HOTSPOT_METHOD_RETURN( |
988 HOTSPOT_METHOD_RETURN( |
989 get_java_tid(thread), |
989 get_java_tid(thread), |
990 (char *) kname->bytes(), kname->utf8_length(), |
990 (char *) kname->bytes(), kname->utf8_length(), |
991 (char *) name->bytes(), name->utf8_length(), |
991 (char *) name->bytes(), name->utf8_length(), |
992 (char *) sig->bytes(), sig->utf8_length()); |
992 (char *) sig->bytes(), sig->utf8_length()); |
993 return 0; |
|
994 JRT_END |
|
995 |
|
996 JRT_ENTRY(int, SharedRuntime::jvmti_method_exit( |
|
997 JavaThread* thread, Method* method)) |
|
998 JvmtiExport::post_method_exit(thread, method, thread->last_frame()); |
|
999 return 0; |
993 return 0; |
1000 JRT_END |
994 JRT_END |
1001 |
995 |
1002 |
996 |
1003 // Finds receiver, CallInfo (i.e. receiver method), and calling bytecode) |
997 // Finds receiver, CallInfo (i.e. receiver method), and calling bytecode) |