]>
git.saurik.com Git - apple/xnu.git/blob - bsd/arm/vmparam.h
2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
5 #ifndef _BSD_ARM_VMPARAM_H_
6 #define _BSD_ARM_VMPARAM_H_ 1
8 #include <sys/resource.h>
10 #define USRSTACK (0x27E00000) /* ASLR slides stack down by up to 1MB */
11 #define USRSTACK64 (0x000000016FE00000ULL)
14 * Virtual memory related constants, all in bytes
17 #define DFLDSIZ (RLIM_INFINITY) /* initial data size limit */
20 #define MAXDSIZ (RLIM_INFINITY) /* max data size */
23 #define DFLSSIZ (1024*1024 - 16*1024) /* initial stack size limit */
26 #define MAXSSIZ (1024*1024) /* max stack size */
29 #define DFLCSIZ (0) /* initial core size limit */
32 #define MAXCSIZ (RLIM_INFINITY) /* max core size */
35 #endif /* _BSD_ARM_VMPARAM_H_ */