diff options
author | Doug Evans <dje@google.com> | 2015-04-15 14:04:35 -0700 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2015-04-15 14:04:35 -0700 |
commit | 30b3dd9d4701834573e6a6c071941c25d825cab8 (patch) | |
tree | 47ca954160e17ed424aee795a72a6f3e60cf7371 /gdb/psymtab.c | |
parent | 61d96d7e2e0a44336fc53eb79ccb59b41705cdb3 (diff) | |
download | gdb-30b3dd9d4701834573e6a6c071941c25d825cab8.zip gdb-30b3dd9d4701834573e6a6c071941c25d825cab8.tar.gz gdb-30b3dd9d4701834573e6a6c071941c25d825cab8.tar.bz2 |
Make info fun|var|types interruptable for psyms.
gdb/ChangeLog:
* psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
Diffstat (limited to 'gdb/psymtab.c')
-rw-r--r-- | gdb/psymtab.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/psymtab.c b/gdb/psymtab.c index b3c2f44..383e4c4 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -1423,6 +1423,8 @@ psym_expand_symtabs_matching ALL_OBJFILE_PSYMTABS_REQUIRED (objfile, ps) { + QUIT; + if (ps->readin) continue; |