diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/alpha/include/param.h | 1 | ||||
-rw-r--r-- | sys/amd64/include/param.h | 1 | ||||
-rw-r--r-- | sys/i386/include/param.h | 1 | ||||
-rw-r--r-- | sys/ia64/include/param.h | 1 | ||||
-rw-r--r-- | sys/powerpc/include/param.h | 1 | ||||
-rw-r--r-- | sys/sparc64/include/param.h | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/sys/alpha/include/param.h b/sys/alpha/include/param.h index 1a9c9af545a5..f9443706fdcc 100644 --- a/sys/alpha/include/param.h +++ b/sys/alpha/include/param.h @@ -117,7 +117,6 @@ #define KSTACK_PAGES 2 /* pages of kstack (with pcb) */ #endif #define KSTACK_GUARD_PAGES 1 /* pages of kstack guard; 0 disables */ -#define UAREA_PAGES 1 /* pages of u-area */ /* diff --git a/sys/amd64/include/param.h b/sys/amd64/include/param.h index 5216c55a28dc..a143957d8e15 100644 --- a/sys/amd64/include/param.h +++ b/sys/amd64/include/param.h @@ -125,7 +125,6 @@ #define KSTACK_PAGES 4 /* pages of kstack (with pcb) */ #endif #define KSTACK_GUARD_PAGES 1 /* pages of kstack guard; 0 disables */ -#define UAREA_PAGES 1 /* holds struct user WITHOUT PCB (see def.) */ /* diff --git a/sys/i386/include/param.h b/sys/i386/include/param.h index a4064e3d9d4c..4ef1e8d90ba6 100644 --- a/sys/i386/include/param.h +++ b/sys/i386/include/param.h @@ -103,7 +103,6 @@ #define KSTACK_PAGES 2 /* Includes pcb! */ #endif #define KSTACK_GUARD_PAGES 1 /* pages of kstack guard; 0 disables */ -#define UAREA_PAGES 1 /* holds struct user WITHOUT PCB (see def.) */ /* * Ceiling on amount of swblock kva space, can be changed via diff --git a/sys/ia64/include/param.h b/sys/ia64/include/param.h index c48ad11bb3f3..934caaafc7e0 100644 --- a/sys/ia64/include/param.h +++ b/sys/ia64/include/param.h @@ -122,7 +122,6 @@ #define KSTACK_PAGES 4 /* pages of kernel stack */ #endif #define KSTACK_GUARD_PAGES 0 /* pages of kstack guard; 0 disables */ -#define UAREA_PAGES 1 /* pages of u-area */ /* * Mach derived conversion macros diff --git a/sys/powerpc/include/param.h b/sys/powerpc/include/param.h index 957aa996386c..15d8e7aed4aa 100644 --- a/sys/powerpc/include/param.h +++ b/sys/powerpc/include/param.h @@ -93,7 +93,6 @@ #endif #define KSTACK_GUARD_PAGES 1 /* pages of kstack guard; 0 disables */ #define USPACE (KSTACK_PAGES * PAGE_SIZE) /* total size of pcb */ -#define UAREA_PAGES 1 /* holds struct user WITHOUT PCB */ /* * Mach derived conversion macros diff --git a/sys/sparc64/include/param.h b/sys/sparc64/include/param.h index 7f5ade6afbce..c81d99a590de 100644 --- a/sys/sparc64/include/param.h +++ b/sys/sparc64/include/param.h @@ -108,7 +108,6 @@ #define KSTACK_PAGES 4 /* pages of kernel stack (with pcb) */ #endif #define KSTACK_GUARD_PAGES 1 /* pages of kstack guard; 0 disables */ -#define UAREA_PAGES 1 /* pages of user area */ #define PCPU_PAGES 1 |