https://github.com/torvalds/linux
Raw File
Tip revision: 1ec218373b8ebda821aec00bb156a9c94fad9cd4 authored by Linus Torvalds on 23 November 2015, 00:45:59 UTC
Linux 4.4-rc2
Tip revision: 1ec2183
ustack.h
#ifndef _ASM_IA64_USTACK_H
#define _ASM_IA64_USTACK_H

#include <asm/page.h>
#include <uapi/asm/ustack.h>

/* The absolute hard limit for stack size is 1/2 of the mappable space in the region */
#define MAX_USER_STACK_SIZE	(RGN_MAP_LIMIT/2)
#define STACK_TOP		(0x6000000000000000UL + RGN_MAP_LIMIT)
#define STACK_TOP_MAX		STACK_TOP
#endif /* _ASM_IA64_USTACK_H */
back to top