2005-04-17 06:20:36 +08:00
|
|
|
#ifndef __ALPHA_A_OUT_H__
|
|
|
|
#define __ALPHA_A_OUT_H__
|
|
|
|
|
2012-12-17 21:47:09 +08:00
|
|
|
#include <uapi/asm/a.out.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* Assume that start addresses below 4G belong to a TASO application.
|
|
|
|
Unfortunately, there is no proper bit in the exec header to check.
|
|
|
|
Worse, we have to notice the start address before swapping to use
|
|
|
|
/sbin/loader, which of course is _not_ a TASO application. */
|
|
|
|
#define SET_AOUT_PERSONALITY(BFPM, EX) \
|
2008-10-16 13:02:37 +08:00
|
|
|
set_personality (((BFPM->taso || EX.ah.entry < 0x100000000L \
|
2005-04-17 06:20:36 +08:00
|
|
|
? ADDR_LIMIT_32BIT : 0) | PER_OSF4))
|
|
|
|
|
|
|
|
#endif /* __A_OUT_GNU_H__ */
|