You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ge...@apache.org on 2006/10/02 20:10:14 UTC

svn commit: r452152 - /incubator/harmony/enhanced/drlvm/trunk/vm/interpreter/src/interpreter_ti.cpp

Author: geirm
Date: Mon Oct  2 11:10:13 2006
New Revision: 452152

URL: http://svn.apache.org/viewvc?view=rev&rev=452152
Log:
HARMONY-1613

In interpreter mode function GetStackTrace() misses frame with main() function.
The problem is in skip_old_frames() function in interpreter. It reports wrong additional missing frame.

Wasn't able to test this specific fix, but it didn't break anything.  Can we have a test to show it?

Ubuntu 6, smoke, c-unit and kernel (as they are)


Modified:
    incubator/harmony/enhanced/drlvm/trunk/vm/interpreter/src/interpreter_ti.cpp

Modified: incubator/harmony/enhanced/drlvm/trunk/vm/interpreter/src/interpreter_ti.cpp
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/vm/interpreter/src/interpreter_ti.cpp?view=diff&rev=452152&r1=452151&r2=452152
==============================================================================
--- incubator/harmony/enhanced/drlvm/trunk/vm/interpreter/src/interpreter_ti.cpp (original)
+++ incubator/harmony/enhanced/drlvm/trunk/vm/interpreter/src/interpreter_ti.cpp Mon Oct  2 11:10:13 2006
@@ -46,7 +46,7 @@
         }
     }
 
-    return 1;
+    return 0;
 }
 
 jvmtiError