mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 16:05:56 +08:00
* breakpoint.c: Include record.h.
(breakpoints_always_inserted_mode): Return false when the record target is in use.
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2011-12-05 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* breakpoint.c: Include record.h.
|
||||
(breakpoints_always_inserted_mode): Return false when the record
|
||||
target is in use.
|
||||
|
||||
2011-12-05 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* amd64-linux-nat.c (amd64_linux_dr_get): Remove FIXME comment.
|
||||
|
@ -67,6 +67,7 @@
|
||||
#include "continuations.h"
|
||||
#include "stack.h"
|
||||
#include "skip.h"
|
||||
#include "record.h"
|
||||
|
||||
/* readline include files */
|
||||
#include "readline/readline.h"
|
||||
@ -377,8 +378,9 @@ show_always_inserted_mode (struct ui_file *file, int from_tty,
|
||||
int
|
||||
breakpoints_always_inserted_mode (void)
|
||||
{
|
||||
return (always_inserted_mode == always_inserted_on
|
||||
|| (always_inserted_mode == always_inserted_auto && non_stop));
|
||||
return ((always_inserted_mode == always_inserted_on
|
||||
|| (always_inserted_mode == always_inserted_auto && non_stop))
|
||||
&& !RECORD_IS_USED);
|
||||
}
|
||||
|
||||
void _initialize_breakpoint (void);
|
||||
|
Reference in New Issue
Block a user