summaryrefslogtreecommitdiffstats
path: root/vm/Exception.h
diff options
context:
space:
mode:
authorbuzbee <buzbee@google.com>2011-04-22 10:27:14 -0700
committerbuzbee <buzbee@google.com>2011-04-22 14:18:00 -0700
commit30bc0d46ae730d78c42c39cfa56a59ba3025380b (patch)
tree497bb35e8045c9c0d92c90f7dadb594e0879c0e6 /vm/Exception.h
parentfad819858f84f27b4461b70a82ae11d9088bbdcb (diff)
downloadandroid_dalvik-30bc0d46ae730d78c42c39cfa56a59ba3025380b.tar.gz
android_dalvik-30bc0d46ae730d78c42c39cfa56a59ba3025380b.tar.bz2
android_dalvik-30bc0d46ae730d78c42c39cfa56a59ba3025380b.zip
Consolidate curFrame fields in thread storage
We ended up with two locations in the Thread structure for saved Dalvik frame pointer. This change consolidates them. Change-Id: I78f288e4e57e232f29663be930101e775bfe370f
Diffstat (limited to 'vm/Exception.h')
-rw-r--r--vm/Exception.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/Exception.h b/vm/Exception.h
index 40f348202..24c0eb4ab 100644
--- a/vm/Exception.h
+++ b/vm/Exception.h
@@ -172,7 +172,7 @@ void dvmLogExceptionStackTrace(void);
* "*newFrame" gets a copy of the new frame pointer.
*
* If "doUnroll" is set, we unroll "thread"s stack as we go (and update
- * self->curFrame with the same value as in *newFrame).
+ * self->interpSave.curFrame with the same value as in *newFrame).
*
* Returns the offset to the catch code on success, or -1 if we couldn't
* find a catcher.