diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-11-16 13:47:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-11-16 13:47:23 +0000 |
commit | eb3950d130c4cdf6d877269cf8fff1023ca94319 (patch) | |
tree | f11227cec7ed439417fe1044d6e11c3ed9ea4cf1 | |
parent | 750a82ba2f3b42f37dc7fd7812f56b0237769c1f (diff) |
crank MAXTSIZ because clang is a piggy
-rw-r--r-- | sys/arch/mips64/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/vmparam.h b/sys/arch/mips64/include/vmparam.h index cfc8f55a05b..7375d91c88b 100644 --- a/sys/arch/mips64/include/vmparam.h +++ b/sys/arch/mips64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.30 2023/03/19 20:32:13 kettenis Exp $ */ +/* $OpenBSD: vmparam.h,v 1.31 2023/11/16 13:47:22 deraadt Exp $ */ /* $NetBSD: vmparam.h,v 1.5 1994/10/26 21:10:10 cgd Exp $ */ /* @@ -51,7 +51,7 @@ * Virtual memory related constants, all in bytes */ #ifndef MAXTSIZ -#define MAXTSIZ (64*1024*1024) /* max text size */ +#define MAXTSIZ (128*1024*1024) /* max text size */ #endif #ifndef DFLDSIZ #define DFLDSIZ (128*1024*1024) /* initial data size limit */ |