Public Member Functions | Package Functions

BinNavi.API.debug.IThreadListener Interface Reference

Used to listen on threads of a target process. More...

Inheritance diagram for BinNavi.API.debug.IThreadListener:
BinNavi.API.debug.ThreadListenerAdapter

List of all members.

Public Member Functions

void changedRegisters (Thread thread)
 Signals changing register values.
void changedState (Thread thread)
 Signals changing thread states.

Package Functions

void changedProgramCounter (Thread thread)
 Signals a change in the PC register.

Detailed Description

This interface must be implemented by all classes that want to be notified about changes in a thread of the target process.


Member Function Documentation

void BinNavi.API.debug.IThreadListener.changedProgramCounter ( Thread  thread  )  [package]

Invoked after the program counter of the thread changed.

Parameters:
thread The thread whose program counter changed.
void BinNavi.API.debug.IThreadListener.changedRegisters ( Thread  thread  ) 

Invoked after the register values of the thread changed.

Parameters:
thread The thread whose register values changed.
void BinNavi.API.debug.IThreadListener.changedState ( Thread  thread  ) 

Invoked after the state of the thread changed.

Parameters:
thread The thread whose state changed.