Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Unified Diff: gdb/skip.h

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/sim-regno.h ('k') | gdb/skip.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/skip.h
diff --git a/gdb/skip.h b/gdb/skip.h
index c1f8185460d679c982cb2c84b008a74010bdff6c..9c5d257ac7d4c4886c045cc87be0999e94e4ffa6 100644
--- a/gdb/skip.h
+++ b/gdb/skip.h
@@ -1,6 +1,6 @@
/* Header for skipping over uninteresting files and functions when debugging.
- Copyright (C) 2011-2012 Free Software Foundation, Inc.
+ Copyright (C) 2011-2013 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -18,11 +18,11 @@
#if !defined (SKIP_H)
#define SKIP_H
-/* Returns 1 if the given pc is marked for skip and shouldn't be
- stepped into. Otherwise, returns 0. */
-int function_pc_is_marked_for_skip (CORE_ADDR pc);
+struct symtab_and_line;
-/* Re-set the skip list after symbols have been reloaded. */
-void skip_re_set (void);
+/* Returns 1 if the given FUNCTION_NAME is marked for skip and shouldn't be
+ stepped into. Otherwise, returns 0. */
+int function_name_is_marked_for_skip (const char *function_name,
+ const struct symtab_and_line *function_sal);
#endif /* !defined (SKIP_H) */
« no previous file with comments | « gdb/sim-regno.h ('k') | gdb/skip.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698