Subversion Repositories HelenOS

Rev

Rev 270 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 270 Rev 292
Line 32... Line 32...
32
#include <arch/types.h>
32
#include <arch/types.h>
33
 
33
 
34
#define MAX_SYMBOL_NAME 64
34
#define MAX_SYMBOL_NAME 64
35
 
35
 
36
struct symtab_entry {
36
struct symtab_entry {
37
    __u64 address;
37
    __u64 address_le;
38
    char symbol_name[MAX_SYMBOL_NAME];
38
    char symbol_name[MAX_SYMBOL_NAME];
39
};
39
};
40
 
40
 
41
extern char * get_symtab_entry(__native addr);
41
extern char * get_symtab_entry(__native addr);
42
 
42