Nomenclature improvements.
Change-Id: I809ab04b6ee74bb8141791e1f3f5d7e3f4efb61c
diff --git a/src/thread.h b/src/thread.h
index d764ff3..7bf9c41 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -80,7 +80,7 @@
kInitializing = 5, // allocated, not yet running --- TODO: unnecessary?
kStarting = 6, // native thread started, not yet ready to run managed code
kNative = 7, // off in a JNI native method
- kVmWait = 8, // waiting on a VM resource
+ kVmWait = 8, // waiting on an internal runtime resource
kSuspended = 9, // suspended, usually by GC or debugger
};
@@ -567,7 +567,7 @@
// JDWP invoke-during-breakpoint support.
DebugInvokeReq* debug_invoke_req_;
- // TLS key used to retrieve the VM thread object.
+ // TLS key used to retrieve the Thread*.
static pthread_key_t pthread_key_self_;
// Additional stack used by method tracer to store method and return pc values.