« Return to Thread: [rvm-research] Adding a new class to the MMTk

[rvm-research] Adding a new class to the MMTk

by Cristian Perfumo :: Rate this Message:

Reply to Author | View in Thread

Hey!
I added a new class file to package org.mmtk.utility.statistics: My_class.java. The class contains one single method:

    public static void println(String s){
        Log.writeln(s);
    }

Now, I want to call this method from package org.mmtk.plan.generational.GenMutator.

Everything looks fine, I have all the imports needed but after executing "ant" to recompile the RVM i get:

BUILD FAILED
/home/cperfumo/jikes/jikesrvm-3.0.1/build.xml:1417: WARNING: UNINTERRUPTIBLE VIOLATION

The class gets compiled correctly as My_class.class does exist. In fact, if I comment out the line in org.mmtk.plan.generational.GenMutator invoking My_class.println(), the RVM gets built successfully.

Any idea of what I am missing?

Thank you very much.

Cristian

------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Jikesrvm-researchers mailing list
Jikesrvm-researchers@...
https://lists.sourceforge.net/lists/listinfo/jikesrvm-researchers

 « Return to Thread: [rvm-research] Adding a new class to the MMTk