summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/include/exec.h
blob: b6b1a457ed9443f1e06d9efb17b0dc9175f67c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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

#define	_NLIST_DO_AOUT

#define	_KERN_DO_AOUT

#endif _MACHINE_EXEC_H_