Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 1001354ca34179f3db924eb66672442a173147dc authored by Linus Torvalds on 15 October 2016, 19:17:50 UTC
Linux 4.9-rc1
Tip revision: 1001354
a.out.h
#ifndef __ALPHA_A_OUT_H__
#define __ALPHA_A_OUT_H__

#include <uapi/asm/a.out.h>


/* 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) \
	set_personality (((BFPM->taso || EX.ah.entry < 0x100000000L \
			   ? ADDR_LIMIT_32BIT : 0) | PER_OSF4))

#endif /* __A_OUT_GNU_H__ */
back to top