diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2007-11-20 17:37:35 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2007-11-20 17:37:35 +0000 |
commit | 568fff39de8c6bb812d8cd038467cb5b545b00ad (patch) | |
tree | 33136e9a06846b1e877b732fb65ef895c556bac6 /gdb/breakpoint.h | |
parent | 592d601cd70e991dc19d245b365481225145a01a (diff) | |
download | gdb-568fff39de8c6bb812d8cd038467cb5b545b00ad.zip gdb-568fff39de8c6bb812d8cd038467cb5b545b00ad.tar.gz gdb-568fff39de8c6bb812d8cd038467cb5b545b00ad.tar.bz2 |
Remove unused breakpoint fields.
* breakpoint.h (struct breakpoint): Remove
from_tty and flag fields.
* breakpoint.c (break_command_1): Don't set
from_tty and flag field set of breakpoint.
(create_ada_exception_breakpoint): Don't set
the from_tty field.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index f13d41b..e4aa72a 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -445,14 +445,6 @@ struct breakpoint /* Methods associated with this breakpoint. */ struct breakpoint_ops *ops; - /* Was breakpoint issued from a tty? Saved for the use of pending breakpoints. */ - int from_tty; - - /* Flag value for pending breakpoint. - first bit : 0 non-temporary, 1 temporary. - second bit : 0 normal breakpoint, 1 hardware breakpoint. */ - int flag; - /* Is breakpoint's condition not yet parsed because we found no location initially so had no context to parse the condition in. */ |