1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/*
Copyright (C) 2011, 2015, 2020 R. Bernstein <rocky@gnu.org>
This file is part of GNU Make (remake variant).
GNU Make is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Make is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Make; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
/* Continue running program. */
/** \file libdebugger/command/continue.c
*
* \brief Debugger `continue` command.
*
* Debugger command to continue running.
*/
#include "../../src/trace.h"
#include "../../src/expand.h"
#include "../break.h"
#include "../fns.h"
#include "../stack.h"
extern debug_return_t
dbg_cmd_continue (char *psz_args)
{
if (psz_args && *psz_args) {
char *psz_target = get_word(&psz_args);
file_t *p_target = NULL;
brkpt_mask_t i_brkpt_mask;
/** FIXME: DRY with code in break.h **/
if (p_stack && p_stack->p_target) {
char *psz_expanded_target =
variable_expand_set(psz_target, p_stack->p_target->variables);
if (*psz_expanded_target) {
p_target = lookup_file(psz_expanded_target);
}
} else
p_target = lookup_file(psz_target);
if (!p_target) {
printf("Can't find target %s; breakpoint not set.\n", psz_target);
return debug_cmd_error;
}
/* FIXME: Combine with code in continue. */
psz_args = get_word(&psz_args);
if (!(psz_args && *psz_args))
i_brkpt_mask = BRK_ALL;
else {
char *psz_break_type;
i_brkpt_mask = get_brkpt_option(psz_args);
while ((psz_break_type = get_word(&psz_args))) {
if (!(psz_break_type && *psz_break_type)) break;
i_brkpt_mask |= get_brkpt_option(psz_break_type) ;
}
}
if (!add_breakpoint(p_target, i_brkpt_mask|BRK_TEMP))
return debug_cmd_error;
} else {
db_level = 0;
}
i_debugger_stepping = 0;
i_debugger_nexting = 0;
define_variable_in_set("MAKEFLAGS", sizeof("MAKEFLAGS")-1,
"", o_debugger, 0, NULL, NULL);
return continue_execution;
};
/*
* Local variables:
* eval: (c-set-style "gnu")
* indent-tabs-mode: nil
* End:
*/
|