diff options
Diffstat (limited to 'gdb/quick-symbol.h')
-rw-r--r-- | gdb/quick-symbol.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/quick-symbol.h b/gdb/quick-symbol.h index d907b1d..7e22108 100644 --- a/gdb/quick-symbol.h +++ b/gdb/quick-symbol.h @@ -20,6 +20,16 @@ #ifndef GDB_QUICK_SYMBOL_H #define GDB_QUICK_SYMBOL_H +/* Like block_enum, but used as flags to pass to lookup functions. */ + +enum block_search_flag_values +{ + SEARCH_GLOBAL_BLOCK = 1, + SEARCH_STATIC_BLOCK = 2 +}; + +DEF_ENUM_FLAGS_TYPE (enum block_search_flag_values, block_search_flags); + /* Comparison function for symbol look ups. */ typedef int (symbol_compare_ftype) (const char *string1, |