csplus.skip_all_breakpoints
|
This function skips all breakpoints.
[Specification format]
csplus.skip_all_breakpoints(skip=True)
|
[Argument(s)]
|
|
skip
|
Specify whether all breakpoints in the current workspace should be skipped
|
[Return value]
None
[Detailed description]
- | This command just ignore all breakpoints when running without changing the enabled state of breakpoints. |
[Example of use]
>>> csplus.skip_all_breakpoints(True)
>>> csplus.resume_debug_session(0)
|