# HG changeset patch # User fturovic # Date 1286393450 18000 # Node ID f0b706fa897d2c299ddb75b2aefefa610867f28f # Parent 750cbc447cc60644b525015b05369d370c13a1b2 all instances of PLUGINS_ROOT preceded by any path had the path removed (incorrect syntax) diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/concepts/breakpoints.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/breakpoints.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/breakpoints.htm Wed Oct 06 14:30:50 2010 -0500 @@ -10,7 +10,7 @@

Breakpoints Overview

A breakpoint is a marker set on a specific line of source code and is designed to halt program execution when encountered by the debugger. After you set a breakpoint at a key point in the program, you can halt its execution, examine its current state, and check register and variable values. You can also change values and alter the flow of normal program execution. Setting breakpoints helps you debug your program and verify its efficiency.

-

A project can have multiple breakpoints set in the source code files. All breakpoints in a project are shown in the Breakpoints view. Breakpoints are enabled or disabled on the currently selected line within a source code editor by selecting the Run > Toggle Breakpoint menu option, right-clicking the marker bar in the editor and selecting Toggle Breakpoint, or by pressing CTRL-SHIFT-B.

+

A project can have multiple breakpoints set in the source code files. All breakpoints in a project are shown in the Breakpoints view. Breakpoints are enabled or disabled on the currently selected line within a source code editor by selecting the Run > Toggle Breakpoint menu option, right-clicking the marker bar in the editor and selecting Toggle Breakpoint, or by pressing CTRL-SHIFT-B.

You can set a breakpoint on any executable line of code that the debugger can resolve. Lines containing comments and other non executable code cannot be assigned a breakpoint as they are normally stripped from the compiled binary. The debugger must load the symbols for a module before it can attempt to resolve breakpoints within the module. This is most easily done using the Executables view to import a binary file, especially if the binary is not in the workspace.

When the debugger attempts to resolve a breakpoint it will result in:

diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_disable.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_disable.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_disable.htm Wed Oct 06 14:30:50 2010 -0500 @@ -40,7 +40,7 @@
Related references
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_enable.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_enable.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_enable.htm Wed Oct 06 14:30:50 2010 -0500 @@ -9,7 +9,7 @@

Enabling Breakpoints

-

Enable a breakpoint to have it halt program execution at the specific line in the source file. You can set a breakpoint using the Breakpoints, Disassembly, or editor views. An enabled breakpoint must still be resolved during a debug session before it can halt program execution. Enabling a breakpoint that you previously disabled is easier than clearing it and re-creating it from scratch.

+

Enable a breakpoint to have it halt program execution at the specific line in the source file. You can set a breakpoint using the Breakpoints, Disassembly, or editor views. An enabled breakpoint must still be resolved during a debug session before it can halt program execution. Enabling a breakpoint that you previously disabled is easier than clearing it and re-creating it from scratch.

Figure 1 shows some source code and the selected line shows the breakpoint icon that appears in the marker bar when a breakpoint is enabled.

Figure 1 - Enabling breakpoint

@@ -41,7 +41,7 @@
Related references
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_exporting.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_exporting.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_exporting.htm Wed Oct 06 14:30:50 2010 -0500 @@ -66,7 +66,7 @@
Related references
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_importing.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_importing.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_importing.htm Wed Oct 06 14:30:50 2010 -0500 @@ -64,7 +64,7 @@
Related references
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_setting.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_setting.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_setting.htm Wed Oct 06 14:30:50 2010 -0500 @@ -11,7 +11,7 @@

Setting Breakpoints

Use the Set Breakpoint command (Ctrl+Shift+B) to set a breakpoint. A regular breakpoint suspends program execution. The debugger executes the line of source code that contains the regular breakpoint.

TIP If you find that a breakpoint is not being hit, verify that the EXE or DLL is listed in the Executables view.

-

TIP If debugging a server launched by a client, you must attach to the server process using the Symbian Data view in order to hit the breakpoints in the server. Alternately, you can launch the server and client as two independent EXEs using the same COM port and debug them that way.

+

TIP If debugging a server launched by a client, you must attach to the server process using the Symbian Data view in order to hit the breakpoints in the server. Alternately, you can launch the server and client as two independent EXEs using the same COM port and debug them that way.

Figure 1 shows some source code and the marker bar to the left of the source code. The selected line shows the breakpoint dot that appears in the marker bar when a breakpoint is set.

Figure 1 - Setting Breakpoints in an editor view

@@ -54,7 +54,7 @@
Related references
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_temporary.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_temporary.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_temporary.htm Wed Oct 06 14:30:50 2010 -0500 @@ -39,7 +39,7 @@
Related references
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/save_breakpoints_view.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/save_breakpoints_view.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/save_breakpoints_view.htm Wed Oct 06 14:30:50 2010 -0500 @@ -30,7 +30,7 @@
Related references
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/show_breakpoints_view.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/show_breakpoints_view.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/show_breakpoints_view.htm Wed Oct 06 14:30:50 2010 -0500 @@ -9,7 +9,7 @@

Opening a Breakpoints View

-

Use the Breakpoints view to show a list of breakpoints currently set in your project.

+

Use the Breakpoints view to show a list of breakpoints currently set in your project.

Figure 1 - Breakpoints view

diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/custom/carb_custom_menus.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/custom/carb_custom_menus.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/custom/carb_custom_menus.htm Wed Oct 06 14:30:50 2010 -0500 @@ -10,7 +10,7 @@

Customizing Carbide: Toolbars and Menus

-

You can customize which commands appear on toolbars and menus using the Customize Perspective dialog. For purposes of customizing Carbide there are two perspectives of interest, the Carbide C/C++ perspective where project management and editing occurs and the Debug perspective used for debugging a project.

+

You can customize which commands appear on toolbars and menus using the Customize Perspective dialog. For purposes of customizing Carbide there are two perspectives of interest, the Carbide C/C++ perspective where project management and editing occurs and the Debug perspective used for debugging a project.

Click Window > Customize Perspectve... to open the Customize Perspective dialog which allows you to customize the current perspective. There are four tabs enabling you to customize the Carbide commands in multiple ways. The tabs include:

Related concepts
Related references
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/memory_monitor_adding.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/memory_monitor_adding.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/memory_monitor_adding.htm Wed Oct 06 14:30:50 2010 -0500 @@ -9,7 +9,7 @@

Adding a Memory Monitor

-

You can add one or more memory monitors to the Memory view. A memory monitor shows the contents of a different address or expression.

+

You can add one or more memory monitors to the Memory view. A memory monitor shows the contents of a different address or expression.

NOTE When using an emulator, the memory addresses are actually based on their location and formats dependent upon the host machine.

To add a Memory Monitor

@@ -49,7 +49,7 @@
Related References
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/memory_monitor_removing.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/memory_monitor_removing.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/memory_monitor_removing.htm Wed Oct 06 14:30:50 2010 -0500 @@ -50,7 +50,7 @@
Related References
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/memory_rendering_adding.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/memory_rendering_adding.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/memory_rendering_adding.htm Wed Oct 06 14:30:50 2010 -0500 @@ -42,7 +42,7 @@
Related References
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/view_memory_show.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/view_memory_show.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/memory/view_memory_show.htm Wed Oct 06 14:30:50 2010 -0500 @@ -30,7 +30,7 @@
Related References
diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/processes/attach_to_process.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/processes/attach_to_process.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/processes/attach_to_process.htm Wed Oct 06 14:30:50 2010 -0500 @@ -12,7 +12,7 @@

Use a Symbian Attach to Process launch configuration to attach the debugger to an already running Symbian process or thread on a target device. This is useful for debugging DLLs where the main process is unknown or for servers running in RAM in a client-server relationship where the client relies on the presence of the server process to operate.

One common debugging DLL use case is when the developer doesn't know which process calls the DLL. This makes it difficult to debug the DLL because you doesn't know which process to attach to nor start. Carbide enables DLL debugging by simply attaching the DLL to any running process as long as the DLL is included in the Executables view.

-

You can also attach to a process in the Symbian Data view when debugging.

+

You can also attach to a process in the Symbian Data view when debugging.

NOTE You cannot attach to a process running on the emulator. It must be a target device running the Symbian and the CODA software.

When attempting to find a process the debugger uses the UID3 to locate the process.

@@ -33,7 +33,7 @@

Figure 3 - Attach to Process window

  • Select a process, click OK.
  • -

    In this example we've linked the prefs.dll program to the process BlackFlag.exe on the device. The Attach to Process dialog closes. Open the Symbian Data view to show the process and thread information.

    +

    In this example we've linked the prefs.dll program to the process BlackFlag.exe on the device. The Attach to Process dialog closes. Open the Symbian Data view to show the process and thread information.

    NOTE Terminating an Attach to Process session actually kills the process on the device. This means you must restart the process on the device in order to attach to it again.

    @@ -41,7 +41,7 @@ diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/projects/prj_debug_dlls.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/projects/prj_debug_dlls.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/projects/prj_debug_dlls.htm Wed Oct 06 14:30:50 2010 -0500 @@ -19,7 +19,7 @@
    • If the DLL is not built by the project you can import the DLL by clicking the Import an executable file icon () in the Executables view. Then, set your breakpoints and start the debug session.
    -

    You can use the Modules view to determine if a particular DLL or binary is loaded and available for debugging.

    +

    You can use the Modules view to determine if a particular DLL or binary is loaded and available for debugging.

    Other references
    • Executables view
    • diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_changing.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_changing.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_changing.htm Wed Oct 06 14:30:50 2010 -0500 @@ -9,7 +9,7 @@

      Changing Register Values

      -

      You can change register values in the Registers view during program execution in order to examine program behavior.

      +

      You can change register values in the Registers view during program execution in order to examine program behavior.

      NOTE Changing a register value can cause unpredictable behavior in the running program.

    diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_data_views.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_data_views.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_data_views.htm Wed Oct 06 14:30:50 2010 -0500 @@ -9,7 +9,7 @@

    Changing Register Data Views

    -

    You can change the register data in the Registers view to see register contents in a different format. For example, you can change the view of a register from binary to hexadecimal format.

    +

    You can change the register data in the Registers view to see register contents in a different format. For example, you can change the view of a register from binary to hexadecimal format.

    To change register data views

      diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_open_wnd.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_open_wnd.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_open_wnd.htm Wed Oct 06 14:30:50 2010 -0500 @@ -9,7 +9,7 @@

      Opening a Registers View

      -

      Open the Registers view to inspect and modify various register contents.

      +

      Open the Registers view to inspect and modify various register contents.

      NOTE When using an emulator, the registers shown are those of the x86 processor on the host machine, not that of the target device.

      To open a Registers view

      @@ -23,7 +23,7 @@
      Other references
      diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_viewing.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_viewing.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/registers/mem_reg_viewing.htm Wed Oct 06 14:30:50 2010 -0500 @@ -9,7 +9,7 @@

      Expanding Register Groups

      -

      You can expand register groups in the Registers view to inspect and modify their contents.

      +

      You can expand register groups in the Registers view to inspect and modify their contents.

      NOTE When using an emulator, the registers shown are those of the x86 processor on the host machine, not that of the target device.

      Viewing Register Groups

      @@ -26,7 +26,7 @@ diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/start/carbide_example_trk.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/start/carbide_example_trk.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/start/carbide_example_trk.htm Wed Oct 06 14:30:50 2010 -0500 @@ -46,7 +46,7 @@

      The SISX file is downloaded and authenticated, then the binaries are installed automatically on the phone.

  • Once the debug session launches, control returns to the Debugger when one of the breakpoints set earlier is hit.
  • -

    At this point you can debug the program in the Debug perspective. Look at the Breakpoints view to verify that the breakpoints set earlier are resolved. In this case, the breakpoint in the MCServer.exe.

    +

    At this point you can debug the program in the Debug perspective. Look at the Breakpoints view to verify that the breakpoints set earlier are resolved. In this case, the breakpoint in the MCServer.exe.

    Figure 5 - Debug perspective showing the resolved breakpoint

  • Click Resume in the Debug view to hit the breakpoint set in the second EXE
  • @@ -59,12 +59,12 @@ -

    In addition, you can click the Symbian Data View to examine the processes running on the devise during the debug session.

    +

    In addition, you can click the Symbian Data View to examine the processes running on the devise during the debug session.

    Related references
    diff -r 750cbc447cc6 -r f0b706fa897d core/com.nokia.carbide.cpp.doc.user/html/tasks/start/carbide_overview_trk.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/tasks/start/carbide_overview_trk.htm Wed Oct 06 14:27:34 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/tasks/start/carbide_overview_trk.htm Wed Oct 06 14:30:50 2010 -0500 @@ -37,7 +37,7 @@
    Related references