mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-15 20:25:46 +02:00
CDT 3.0.
This commit is contained in:
parent
37216cd824
commit
eaa4628837
3 changed files with 11 additions and 14 deletions
|
@ -11,21 +11,24 @@
|
||||||
<body>
|
<body>
|
||||||
<h1>Breakpoints</h1>
|
<h1>Breakpoints</h1>
|
||||||
|
|
||||||
<p>A breakpoint suspends the execution of a thread at the location where the breakpoint is set.
|
<p>A breakpoint suspends the execution of a program at the location where the breakpoint is set.
|
||||||
To set a breakpoint, right-click in the frame on the left side of an editor beside
|
To set a line breakpoint, right-click in the marker bar area on the left side of an editor beside
|
||||||
the line where you want the breakpoint, then choose <b>Add Breakpoint</b>.
|
the line where you want the program to be suspended, then choose <b>Toggle Breakpoint</b>. You can
|
||||||
|
also double-click on the marker bar next to the source code line. A new breakpoint marker appears
|
||||||
|
on the marker bar, directly to the left of the line where you added the breakpoint. Also, the new
|
||||||
|
breakpoint appears in the Breakpoints view list.
|
||||||
</p>
|
</p>
|
||||||
<p>Once set, a breakpoint can be enabled and disabled by right-clicking on its icon or by
|
<p>Once set, a breakpoint can be enabled and disabled by right-clicking on its icon or by
|
||||||
right-clicking on its description in the <b>Breakpoints</b> view.
|
right-clicking on its description in the <b>Breakpoints</b> view.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>When a breakpoint is enabled, it causes a thread to suspend whenever it is hit.
|
<li>When a breakpoint is enabled, it causes the program to suspend whenever it is hit.
|
||||||
Enabled breakpoints are indicated with a blue
|
Enabled breakpoints are indicated with a blue
|
||||||
<img src="../images/icon_breakpoint_obj.gif" alt="enabled breakpoint" border="0"> circle.
|
<img src="../images/icon_breakpoint_obj.gif" alt="enabled breakpoint" border="0"> circle.
|
||||||
Enabled breakpoints that are successfully installed
|
Enabled breakpoints that are successfully installed
|
||||||
are indicated with a checkmark overlay.</li>
|
are indicated with a checkmark overlay.</li>
|
||||||
<li>When a breakpoint is disabled, it will not cause threads to suspend.
|
<li>When a breakpoint is disabled, it will not affect the execution of the program.
|
||||||
Disabled breakpoints are indicated with a white
|
Disabled breakpoints are indicated with a white
|
||||||
<img src="../images/icon_breakpoint_disable.gif" alt="disabled breakpoint" border="0"> circle.<br>
|
<img src="../images/icon_breakpoint_disable.gif" alt="disabled breakpoint" border="0"> circle.<br>
|
||||||
<img border="0" src="../images/add_breakpoint.png" ALT="Editor view with cursor highlighting breakpoint" width="453" height="335">
|
<img border="0" src="../images/add_breakpoint.png" ALT="Editor view with cursor highlighting breakpoint" width="453" height="335">
|
||||||
|
@ -34,9 +37,6 @@ Disabled breakpoints are indicated with a white
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Debugging breakpoints are displayed in the marker bar in the editor area
|
|
||||||
and in the <b>Breakpoints</b> view.
|
|
||||||
</p>
|
|
||||||
<p><b>Note: </b>Execution will also suspend
|
<p><b>Note: </b>Execution will also suspend
|
||||||
if <b>Stop at main() on startup</b> is enabled
|
if <b>Stop at main() on startup</b> is enabled
|
||||||
on the <b>Launch Configuration</b> dialog.
|
on the <b>Launch Configuration</b> dialog.
|
||||||
|
|
|
@ -55,10 +55,10 @@ stops.</p>
|
||||||
|
|
||||||
<p>You can inspect and change your process memory.</p>
|
<p>You can inspect and change your process memory.</p>
|
||||||
|
|
||||||
<h2>Shared libraries</h2>
|
<h2>Modules</h2>
|
||||||
|
|
||||||
<p>You can view information about the shared libraries loaded in the current
|
<p>You can view information about the modules (executables and shared libraries) loaded
|
||||||
debug session.</p>
|
in the current debug session.</p>
|
||||||
|
|
||||||
<h2>Signals</h2>
|
<h2>Signals</h2>
|
||||||
|
|
||||||
|
|
|
@ -16,9 +16,6 @@
|
||||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_brkpnts.htm">Breakpoints</a><br>
|
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_brkpnts.htm">Breakpoints</a><br>
|
||||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_over_dbg.htm">Debug overview</a><br>
|
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_over_dbg.htm">Debug overview</a><br>
|
||||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_dbg_info.htm">Debug information</a><br>
|
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_dbg_info.htm">Debug information</a><br>
|
||||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none">Error Parsing</a><br>
|
|
||||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none">Invoking Make</a><br>
|
|
||||||
|
|
||||||
|
|
||||||
<p><img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" ></p>
|
<p><img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" ></p>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue