Uses of Class
org.jikesrvm.scheduler.SystemThread

Packages that use SystemThread
org.jikesrvm.adaptive   
org.jikesrvm.adaptive.controller   
org.jikesrvm.adaptive.measurements.organizers   
org.jikesrvm.adaptive.recompilation   
org.jikesrvm.mm.mminterface   
org.jikesrvm.scheduler   
 

Uses of SystemThread in org.jikesrvm.adaptive
 

Subclasses of SystemThread in org.jikesrvm.adaptive
 class OSROrganizerThread
          Organizer thread collects OSR requests and inserted in controller queue The producers are application threads, and the consumer thread is the organizer.
 

Uses of SystemThread in org.jikesrvm.adaptive.controller
 

Subclasses of SystemThread in org.jikesrvm.adaptive.controller
 class ControllerThread
          This class implements the controller thread.
 

Uses of SystemThread in org.jikesrvm.adaptive.measurements.organizers
 

Subclasses of SystemThread in org.jikesrvm.adaptive.measurements.organizers
 class AccumulatingMethodSampleOrganizer
          An organizer for method listener information that simply accumulates the samples into a private MethodCountData instance.
(package private)  class AccumulatingMethodSampleOrganizer.AsyncReporter
           
 class DecayOrganizer
          An organizer that periodically decays runtime counters
 class DynamicCallGraphOrganizer
          An organizer to build a dynamic call graph from call graph edge samples.
 class MethodSampleOrganizer
          An organizer for method listener information.
 class Organizer
          An Organizer acts an an intermediary between the low level online measurements and the controller.
 

Uses of SystemThread in org.jikesrvm.adaptive.recompilation
 

Subclasses of SystemThread in org.jikesrvm.adaptive.recompilation
 class CompilationThread
          This class is a separate thread whose job is to monitor a (priority) queue of compilation plans.
 

Uses of SystemThread in org.jikesrvm.mm.mminterface
 

Subclasses of SystemThread in org.jikesrvm.mm.mminterface
 class CollectorThread
          System thread used to perform garbage collection work.
 

Uses of SystemThread in org.jikesrvm.scheduler
 

Subclasses of SystemThread in org.jikesrvm.scheduler
 class BootThread
          Represents the thread that the Jikes RVM uses to boot itself.
 class FinalizerThread
          Finalizer thread.
 class TimerThread
          The timer thread.
 

Fields in org.jikesrvm.scheduler declared as SystemThread
private  SystemThread RVMThread.systemThread
          Non-null indicates this is a system thread, that is one used by the system and as such doesn't have a Runnable...
 

Constructors in org.jikesrvm.scheduler with parameters of type SystemThread
RVMThread(byte[] stack, Thread thread, String name, boolean daemon, SystemThread systemThread, int priority)
          Create a new RVM Thread
RVMThread(SystemThread systemThread, byte[] stack, String name)
          Create a thread with the given stack and name.
RVMThread(SystemThread systemThread, String name)
          Create a thread with default stack and with the given name.