URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [libmisc/] [monitor/] [symbols.h] - Rev 1780
Go to most recent revision | Compare with Previous | Blame | View Log
/* * RTEMS monitor symbol table functions * * Description: * Entry points for symbol table routines. * * * * TODO: * * symbols.h,v 1.5 1997/09/21 16:58:57 joel Exp */ #ifndef _INCLUDE_SYMBOLS_H #define _INCLUDE_SYMBOLS_H #ifdef __cplusplus extern "C" { #endif typedef struct { rtems_unsigned32 value; char *name; } rtems_symbol_t; #define SYMBOL_STRING_BLOCK_SIZE 4080 typedef struct rtems_symbol_string_block_s { struct rtems_symbol_string_block_s *next; char buffer[SYMBOL_STRING_BLOCK_SIZE]; } rtems_symbol_string_block_t; typedef struct { rtems_unsigned32 sorted; /* are symbols sorted right now? */ rtems_unsigned32 growth_factor; /* % to grow by when needed */ rtems_unsigned32 next; /* next symbol slot to use when adding */ rtems_unsigned32 size; /* max # of symbols */ /* * Symbol list -- sorted by address (when we do a lookup) */ rtems_symbol_t *addresses; /* symbol array by address */ /* * String pool, unsorted, a list of blocks of string data */ rtems_symbol_string_block_t *string_buffer_head; rtems_symbol_string_block_t *string_buffer_current; rtems_unsigned32 strings_next; /* next byte to use in this block */ } rtems_symbol_table_t; #define rtems_symbol_name(sp) ((sp)->name) #define rtems_symbol_value(sp) ((sp)->value) #ifdef __cplusplus } #endif #endif /* ! _INCLUDE_SYMBOLS_H */
Go to most recent revision | Compare with Previous | Blame | View Log