| <html lang="en"> |
| <head> |
| <title>Active Targets - Debugging with GDB</title> |
| <meta http-equiv="Content-Type" content="text/html"> |
| <meta name="description" content="Debugging with GDB"> |
| <meta name="generator" content="makeinfo 4.13"> |
| <link title="Top" rel="start" href="index.html#Top"> |
| <link rel="up" href="Targets.html#Targets" title="Targets"> |
| <link rel="next" href="Target-Commands.html#Target-Commands" title="Target Commands"> |
| <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> |
| <!-- |
| Copyright (C) 1988-2019 Free Software Foundation, Inc. |
| |
| Permission is granted to copy, distribute and/or modify this document |
| under the terms of the GNU Free Documentation License, Version 1.3 or |
| any later version published by the Free Software Foundation; with the |
| Invariant Sections being ``Free Software'' and ``Free Software Needs |
| Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,'' |
| and with the Back-Cover Texts as in (a) below. |
| |
| (a) The FSF's Back-Cover Text is: ``You are free to copy and modify |
| this GNU Manual. Buying copies from GNU Press supports the FSF in |
| developing GNU and promoting software freedom.'' |
| --> |
| <meta http-equiv="Content-Style-Type" content="text/css"> |
| <style type="text/css"><!-- |
| pre.display { font-family:inherit } |
| pre.format { font-family:inherit } |
| pre.smalldisplay { font-family:inherit; font-size:smaller } |
| pre.smallformat { font-family:inherit; font-size:smaller } |
| pre.smallexample { font-size:smaller } |
| pre.smalllisp { font-size:smaller } |
| span.sc { font-variant:small-caps } |
| span.roman { font-family:serif; font-weight:normal; } |
| span.sansserif { font-family:sans-serif; font-weight:normal; } |
| --></style> |
| </head> |
| <body> |
| <div class="node"> |
| <a name="Active-Targets"></a> |
| <p> |
| Next: <a rel="next" accesskey="n" href="Target-Commands.html#Target-Commands">Target Commands</a>, |
| Up: <a rel="up" accesskey="u" href="Targets.html#Targets">Targets</a> |
| <hr> |
| </div> |
| |
| <h3 class="section">19.1 Active Targets</h3> |
| |
| <p><a name="index-stacking-targets-1307"></a><a name="index-active-targets-1308"></a><a name="index-multiple-targets-1309"></a> |
| There are multiple classes of targets such as: processes, executable files or |
| recording sessions. Core files belong to the process class, making core file |
| and process mutually exclusive. Otherwise, <span class="sc">gdb</span> can work concurrently |
| on multiple active targets, one in each class. This allows you to (for |
| example) start a process and inspect its activity, while still having access to |
| the executable file after the process finishes. Or if you start process |
| recording (see <a href="Reverse-Execution.html#Reverse-Execution">Reverse Execution</a>) and <code>reverse-step</code> there, you are |
| presented a virtual layer of the recording target, while the process target |
| remains stopped at the chronologically last point of the process execution. |
| |
| <p>Use the <code>core-file</code> and <code>exec-file</code> commands to select a new core |
| file or executable target (see <a href="Files.html#Files">Commands to Specify Files</a>). To |
| specify as a target a process that is already running, use the <code>attach</code> |
| command (see <a href="Attach.html#Attach">Debugging an Already-running Process</a>). |
| |
| </body></html> |
| |