summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/machine/exec.h
blob: 955b3c2050bf757436b0abdd23c827cfe9527a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _MACHINE_EXEC_H_
#define _MACHINE_EXEC_H_ 

#define __LDPGSZ        4096

struct relocation_info_m88k { 
        unsigned int r_address;         /* offset in text or data segment */
        unsigned int r_symbolnum : 24,  /* ordinal number of add symbol */
                        r_extern :  1,  /* 1 if need to add symbol to value */
                        r_baserel : 1,
                        r_pcrel : 1,
                        r_jmptable : 1,
                        r_type : 4;

        int r_addend;
};
#define relocation_info relocation_info_m88k
#endif _MACHINE_EXEC_H_