+ * dwarf2read.c (dw2_map_symtabs_matching_filename): Add QUIT calls.
+ * psymtab.c (psym_map_symtabs_matching_filename): Add QUIT call.
+ * symtab.c (iterate_over_symtabs): Add QUIT calls.
+--- README.google 2015-09-06 00:28:23.000000000 -0700
++++ README.google 2015-09-06 00:32:11.000000000 -0700
++
++2015-09-05 Doug Evans <dje@google.com>
++
++ * objfiles.c (default_iterate_over_objfiles_in_search_order): Add
++ QUIT call.
++ * symtab.c (lookup_static_symbol): Ditto.
++ (basic_lookup_transparent_type): Ditto.
++ * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
++ Ditto.
ALL_OBJFILES (objfile)
{
- stop = cb (objfile, cb_data);
- if (stop)
- return;
+ QUIT;
+
+ stop = cb (objfile, cb_data);
+ if (stop)
+ return;
}
}
ALL_OBJFILES (objfile)
{
+ QUIT;
+
result = lookup_symbol_in_objfile (objfile, STATIC_BLOCK, name, domain);
if (result != NULL)
{
ALL_OBJFILES (objfile)
{
+ QUIT;
+
t = basic_lookup_transparent_type_1 (objfile, GLOBAL_BLOCK, name);
if (t)
return t;
ALL_OBJFILES (objfile)
{
+ QUIT;
+
t = basic_lookup_transparent_type_quick (objfile, GLOBAL_BLOCK, name);
if (t)
return t;
ALL_OBJFILES (objfile)
{
+ QUIT;
+
t = basic_lookup_transparent_type_1 (objfile, STATIC_BLOCK, name);
if (t)
return t;
ALL_OBJFILES (objfile)
{
+ QUIT;
+
t = basic_lookup_transparent_type_quick (objfile, STATIC_BLOCK, name);
if (t)
return t;
ALL_OBJFILES (objfile)
{
+ QUIT;
+
if (objfile != current_objfile)
{
stop = cb (objfile, cb_data);