 |
Qore Programming Language Reference Manual
0.9.11
|
nothing assignProgram(ProgramControl pgm)
Assign Program to breakpoint.
const BreakpointPolicyNone
Thread list is ignored.
Definition: QC_Breakpoint.dox.h:175
static Breakpoint resolveBreakpointId(int breakpointId)
Get instance of breakpoint id.
bool getEnabled()
Get enabled state of breakpoint.
int getBreakpointId()
Get breakpoint id.
ProgramControl getProgram()
Get ProgramControl assigned to the breakpoint.
nothing setThreadIds(softlist< softint > tidList)
Set list of the thread IDs.
nothing setEnabled(bool enabled)
Set enabled state to breakpoint.
copy()
Creates copy of breakpoint object.
nothing setPolicy(softint policy)
Defines policy how thread list is evaluated. See Breakpoint Policy Constants.
nothing addThreadId(int tid)
Add thread ID to the list.
The ProgramControl class provides safe information about a Qore program.
Definition: QC_ProgramControl.dox.h:45
const BreakpointPolicyReject
Consider all thread except those enumerated in thread list.
Definition: QC_Breakpoint.dox.h:177
list< int > getStatementIds()
Get list of statements.
nothing unassignProgram()
Unassign Program from breakpoint and deletes all statement references.
int getPolicy()
Get policy how thread list is evaluated. See Breakpoint Policy Constants.
constructor()
Creates the breakpoint object with notification functions without any functionality.
const BreakpointPolicyAccept
Consider only threads enumerated in thread list.
Definition: QC_Breakpoint.dox.h:173
nothing clearThreadIds()
Clear list of the thread IDs.
nothing unassignStatement(int statementId)
Unassign breakpoint from statement.
bool isThreadId(softint tid)
Check if thread is ID in list.
list< int > getThreadIds()
Get list of the thread IDs.
Breakpoint class supports breakpoint setting for particular Qore ProgramControl when debugging.
Definition: QC_Breakpoint.dox.h:27
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
destructor()
Unlinks from Breakpoint object and dereferences it.
nothing removeThreadId(int tid)
Remove thread ID from the list.
nothing assignStatement(int statementId)
Assign breakpoint to a statement.