Subversion Repositories HelenOS

Rev

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

Rev 268 Rev 270
Line 29... Line 29...
29
#ifndef __SYMTAB_H__
29
#ifndef __SYMTAB_H__
30
#define __SYMTAB_H__
30
#define __SYMTAB_H__
31
 
31
 
32
#include <arch/types.h>
32
#include <arch/types.h>
33
 
33
 
34
#define MAX_SYMBOL_NAME 32
34
#define MAX_SYMBOL_NAME 64
35
 
35
 
36
struct symtab_entry {
36
struct symtab_entry {
37
    __u64 address;
37
    __u64 address;
38
    char symbol_name[MAX_SYMBOL_NAME];
38
    char symbol_name[MAX_SYMBOL_NAME];
39
};
39
};