Rev 4153 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4153 | Rev 4263 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
29 | /** @addtogroup generic |
29 | /** @addtogroup generic |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | /** @file |
32 | /** @file |
33 | */ |
33 | */ |
34 | 34 | ||
Line 46... | Line 46... | ||
46 | 46 | ||
47 | extern int symtab_name_lookup(unative_t addr, char **name); |
47 | extern int symtab_name_lookup(unative_t addr, char **name); |
48 | extern char *symtab_fmt_name_lookup(unative_t addr); |
48 | extern char *symtab_fmt_name_lookup(unative_t addr); |
49 | extern int symtab_addr_lookup(const char *name, uintptr_t *addr); |
49 | extern int symtab_addr_lookup(const char *name, uintptr_t *addr); |
50 | extern void symtab_print_search(const char *name); |
50 | extern void symtab_print_search(const char *name); |
51 | extern int symtab_compl(char *name); |
51 | extern int symtab_compl(char *input, count_t size); |
52 | 52 | ||
53 | #ifdef CONFIG_SYMTAB |
53 | #ifdef CONFIG_SYMTAB |
54 | 54 | ||
55 | /* Symtable linked together by build process */ |
55 | /* Symtable linked together by build process */ |
56 | extern struct symtab_entry symbol_table[]; |
56 | extern struct symtab_entry symbol_table[]; |