[Nestedvm] Problem with libs
Adam Megacz
megacz at cs.berkeley.edu
Sun Jun 28 16:37:11 EDT 2009
Anton Evtushenko <duran_anton at ua.fm> writes:
> In the dump of Test.class file:
> $javap -c Test
megacz at gentzen:/tmp/nestedvm$javap Test
Compiled from "test.mips"
public final class Test extends org.ibex.nestedvm.Runtime{
// ...
Note that Test extends Runtime. You want to invoke the method
Runtime.call(String), like this:
Test t = new Test();
t.start();
t.call("f1");
- a
More information about the Nestedvm
mailing list