comparison src/share/vm/prims/jvmtiEnvBase.hpp @ 6919:39556eae08af

6533010: SPEC: A few broken links in jvmti.html Summary: Fix the incorrect links in jvmti.html reported by the LinkCheck tool Reviewed-by: jjh, dholmes Contributed-by: serguei.spitsyn@oracle.com
author sspitsyn
date Mon, 29 Oct 2012 11:35:20 -0700
parents fb19af007ffc
children db9981fd3124
comparison
equal deleted inserted replaced
6917:e81fbc04a942 6919:39556eae08af
67 public: 67 public:
68 68
69 enum { 69 enum {
70 JDK15_JVMTI_VERSION = JVMTI_VERSION_1_0 + 33, /* version: 1.0.33 */ 70 JDK15_JVMTI_VERSION = JVMTI_VERSION_1_0 + 33, /* version: 1.0.33 */
71 JDK16_JVMTI_VERSION = JVMTI_VERSION_1_1 + 102, /* version: 1.1.102 */ 71 JDK16_JVMTI_VERSION = JVMTI_VERSION_1_1 + 102, /* version: 1.1.102 */
72 JDK17_JVMTI_VERSION = JVMTI_VERSION_1_2 + 1 /* version: 1.2.1 */ 72 JDK17_JVMTI_VERSION = JVMTI_VERSION_1_2 + 2 /* version: 1.2.2 */
73 }; 73 };
74 74
75 static jvmtiPhase get_phase() { return _phase; } 75 static jvmtiPhase get_phase() { return _phase; }
76 static void set_phase(jvmtiPhase phase) { _phase = phase; } 76 static void set_phase(jvmtiPhase phase) { _phase = phase; }
77 static bool is_vm_live() { return _phase == JVMTI_PHASE_LIVE; } 77 static bool is_vm_live() { return _phase == JVMTI_PHASE_LIVE; }