Uses of Interface
frysk.proc.TaskObserver.Instruction

Packages that use TaskObserver.Instruction
frysk.bindir   
frysk.proc This package implements frysk's process model of the target system. 
frysk.proc.dummy This package implements a dummy process model that can be used to test code that does not require a running process. 
frysk.proc.live This is a frysk implementation package that provides the implementation of frysk.proc for ptrace based (GNU/Linux) systems. 
 

Uses of TaskObserver.Instruction in frysk.bindir
 

Classes in frysk.bindir that implement TaskObserver.Instruction
 class fstep
           
 

Uses of TaskObserver.Instruction in frysk.proc
 

Methods in frysk.proc with parameters of type TaskObserver.Instruction
abstract  boolean Task.isInstructionObserverAdded(TaskObserver.Instruction o)
          Returns true if the observer has been added to task's instruction observer list.
abstract  void Task.requestAddInstructionObserver(TaskObserver.Instruction o)
          Request the addition of a Instruction observer that will be notified as soon as the task executes an instruction.
abstract  void Task.requestDeleteInstructionObserver(TaskObserver.Instruction o)
          Delete TaskObserver.Instruction from the TaskObserver pool.
 

Uses of TaskObserver.Instruction in frysk.proc.dummy
 

Methods in frysk.proc.dummy with parameters of type TaskObserver.Instruction
 boolean DummyTask.isInstructionObserverAdded(TaskObserver.Instruction o)
           
 void DummyTask.requestAddInstructionObserver(TaskObserver.Instruction o)
           
 void DummyTask.requestDeleteInstructionObserver(TaskObserver.Instruction o)
           
 

Uses of TaskObserver.Instruction in frysk.proc.live
 

Methods in frysk.proc.live with parameters of type TaskObserver.Instruction
 boolean LinuxPtraceTask.isInstructionObserverAdded(TaskObserver.Instruction o)
           
 void LinuxPtraceTask.requestAddInstructionObserver(TaskObserver.Instruction o)
          Request the addition of a Instruction observer that will be notified as soon as the task executes an instruction.
 void LinuxPtraceTask.requestDeleteInstructionObserver(TaskObserver.Instruction o)
          Delete TaskObserver.Instruction from the TaskObserver pool.