diff options
author | Ron Unrau <runrau@cygnus> | 1998-06-14 14:48:27 +0000 |
---|---|---|
committer | Ron Unrau <runrau@cygnus> | 1998-06-14 14:48:27 +0000 |
commit | f85d9973b3e0634efe442379739d454d66e1ebb9 (patch) | |
tree | 90465ef66f06df9b15ca85c434fabdff1835b165 /gdb/buildsym.h | |
parent | 47963370862cc6cfb70aa6896b0231d20330dd2e (diff) | |
download | gdb-f85d9973b3e0634efe442379739d454d66e1ebb9.zip gdb-f85d9973b3e0634efe442379739d454d66e1ebb9.tar.gz gdb-f85d9973b3e0634efe442379739d454d66e1ebb9.tar.bz2 |
* partial-stab.h: 'F' and 'f' type N_FUN psymbols should pass
CUR_SYMBOL_VALUE as CORE_ADDR instead of long
* buildsym.[ch]: export pending_blocks list
* tm-txvu.h: define TARGET_READ_SP and TARGET_WRITE_SP
* txvu-tdep.c: rewrite symtabs to support N_FUN symbols in overlays.
(Actually, the last version did this for N_SLINE symbols).
(txvu_read_sp,txvu_write_sp): new
Diffstat (limited to 'gdb/buildsym.h')
-rw-r--r-- | gdb/buildsym.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/buildsym.h b/gdb/buildsym.h index 5f572b2..5cf7548 100644 --- a/gdb/buildsym.h +++ b/gdb/buildsym.h @@ -166,6 +166,13 @@ struct pending_block struct block *block; }; +/* Pointer to the head of a linked list of symbol blocks which have + already been finalized (lexical contexts already closed) and which are + just waiting to be built into a blockvector when finalizing the + associated symtab. */ + +EXTERN struct pending_block *pending_blocks; + struct subfile_stack { |