diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-09 17:45:25 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-09 17:45:25 +0000 |
commit | 8e6dcca39d91471e3c5c09c3f051d11ac38c8c97 (patch) | |
tree | 7d9d7ac66a33bd1d14d567ee5a80f5958acac2bb /sys/arch/hppa/include/pmap.h | |
parent | bf2e90e8db2de225a991b860258fb3eb39f56036 (diff) |
sid max should be such that after conversion into prot-id it will not overflow
Diffstat (limited to 'sys/arch/hppa/include/pmap.h')
-rw-r--r-- | sys/arch/hppa/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/pmap.h b/sys/arch/hppa/include/pmap.h index eb844334956..2f2eaa90289 100644 --- a/sys/arch/hppa/include/pmap.h +++ b/sys/arch/hppa/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.20 2002/04/22 06:31:28 mickey Exp $ */ +/* $OpenBSD: pmap.h,v 1.21 2002/05/09 17:45:24 mickey Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff @@ -52,7 +52,7 @@ struct pmap { typedef struct pmap *pmap_t; #define HPPA_MAX_PID 0xfffa -#define HPPA_SID_MAX 0x7fff +#define HPPA_SID_MAX 0x7ffd #define HPPA_SID_KERNEL 0 #define HPPA_PID_KERNEL 2 |