diff options
author | Pedro Alves <palves@redhat.com> | 2008-09-22 15:26:53 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-09-22 15:26:53 +0000 |
commit | 6ca15a4b218da0eb45fd099f8662a0c3388b7eda (patch) | |
tree | 5a7e7010027eb6162042e0717f0ed77b2f70437b /gdb/breakpoint.h | |
parent | 795e548fb82c76d22dff382dfc99e121ad0f0167 (diff) | |
download | gdb-6ca15a4b218da0eb45fd099f8662a0c3388b7eda.zip gdb-6ca15a4b218da0eb45fd099f8662a0c3388b7eda.tar.gz gdb-6ca15a4b218da0eb45fd099f8662a0c3388b7eda.tar.bz2 |
* infrun.c (follow_exec): Don't do a generic mourn. Instead
inline the required bits.
* breakpoint.h (enum inf_context): Add inf_execd.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 8bafc93..db6e972 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -663,7 +663,8 @@ enum inf_context { inf_starting, inf_running, - inf_exited + inf_exited, + inf_execd }; /* The possible return values for breakpoint_here_p. |