aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorVladimir Prus <vladimir@codesourcery.com>2007-09-22 19:10:05 +0000
committerVladimir Prus <vladimir@codesourcery.com>2007-09-22 19:10:05 +0000
commit018d34a46b565ceaf494bcf8f3a8a9ec488bb69a (patch)
tree63c1c6b0701791ee3024d624e59fe06d8a3d2f06 /gdb/ChangeLog
parent511a6cd4e1e2b29e79fd05f8dd3fb95de3961ed6 (diff)
downloadgdb-018d34a46b565ceaf494bcf8f3a8a9ec488bb69a.zip
gdb-018d34a46b565ceaf494bcf8f3a8a9ec488bb69a.tar.gz
gdb-018d34a46b565ceaf494bcf8f3a8a9ec488bb69a.tar.bz2
* breakpoint.c (create_breakpoint): Split from
create_breakpoints, implementing most of its logic. Take just a single sal, single address string and single condition. Do not take parsed condition at all. (create_breakpoints): Just call create_breakpoint for each sal. (find_condition_and_thread): New. (break_command_1): Use find_condition_and_thread. Do not keep parsed conditions. (do_captured_breakpoint): Don't convert condition string to struct expression.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog16
1 files changed, 15 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c3dd35e..0a6d886 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,6 +1,20 @@
2007-09-22 Vladimir Prus <vladimir@codesourcery.com>
- gdb/
+ * breakpoint.c (create_breakpoint): Split from
+ create_breakpoints, implementing most of its logic.
+ Take just a single sal, single address string and
+ single condition. Do not take parsed condition at
+ all.
+ (create_breakpoints): Just call create_breakpoint
+ for each sal.
+ (find_condition_and_thread): New.
+ (break_command_1): Use find_condition_and_thread.
+ Do not keep parsed conditions.
+ (do_captured_breakpoint): Don't convert
+ condition string to struct expression.
+
+2007-09-22 Vladimir Prus <vladimir@codesourcery.com>
+
* breakpoint.h (struct breakpoint): Move the cond
field to...
(struct bp_location): Here.