GDB (API)
Defines | Functions | Variables
/home/stan/gdb/src/gdb/skip.c File Reference
#include "defs.h"
#include "skip.h"
#include "value.h"
#include "valprint.h"
#include "ui-out.h"
#include "gdb_string.h"
#include "symtab.h"
#include "gdbcmd.h"
#include "command.h"
#include "completer.h"
#include "stack.h"
#include "cli/cli-utils.h"
#include "arch-utils.h"
#include "linespec.h"
#include "objfiles.h"
#include "exceptions.h"
#include "breakpoint.h"
#include "source.h"
#include "filenames.h"

Go to the source code of this file.

Defines

#define ALL_SKIPLIST_ENTRIES(E)   for (E = skiplist_entry_chain; E; E = E->next)
#define ALL_SKIPLIST_ENTRIES_SAFE(E, TMP)

Functions

int function_name_is_marked_for_skip (const char *function_name, const struct symtab_and_line *function_sal)
void _initialize_step_skip (void)

Variables

initialize_file_ftype _initialize_step_skip

Define Documentation

#define ALL_SKIPLIST_ENTRIES (   E)    for (E = skiplist_entry_chain; E; E = E->next)

Definition at line 62 of file skip.c.

#define ALL_SKIPLIST_ENTRIES_SAFE (   E,
  TMP 
)
Value:
for (E = skiplist_entry_chain;         \
       E ? (TMP = E->next, 1) : 0;       \
       E = TMP)

Definition at line 65 of file skip.c.


Function Documentation

void _initialize_step_skip ( void  )

Definition at line 393 of file skip.c.

int function_name_is_marked_for_skip ( const char *  function_name,
const struct symtab_and_line function_sal 
)

Definition at line 335 of file skip.c.


Variable Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines