diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-20 03:27:43 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-20 03:27:43 +0000 |
commit | e7e22cfda6f5cb9a6ac962c0dc98e0666b44e3f2 (patch) | |
tree | 62f403cbedd6af7434de492efb180228da40f0cd | |
parent | 7f0b0f3efd4730176507ac70e033f6d627b7e158 (diff) |
minimum pdc stack is 9k, define it to be 16k here
-rw-r--r-- | sys/arch/hppa/include/pdc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/pdc.h b/sys/arch/hppa/include/pdc.h index 26487be741c..5778068b201 100644 --- a/sys/arch/hppa/include/pdc.h +++ b/sys/arch/hppa/include/pdc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pdc.h,v 1.19 2002/03/14 01:26:32 millert Exp $ */ +/* $OpenBSD: pdc.h,v 1.20 2002/05/20 03:27:42 mickey Exp $ */ /* * Copyright (c) 1990 mt Xinu, Inc. All rights reserved. @@ -92,6 +92,7 @@ #define IODC_MAXIOSIZ (64 * 1024) /* maximum buffer size for IODC call */ #define PDC_ALIGNMENT __attribute__ ((__aligned__(64))) +#define PDC_STACKSIZE (4*NBPG) /* * The PDC Entry Points and their arguments... |