diff options
author | 2014-04-07 16:29:06 +0000 | |
---|---|---|
committer | 2014-04-07 16:29:06 +0000 | |
commit | 74f9a82031b977c62c749a9778b92cd52f3bcce5 (patch) | |
tree | d111abeaf1f241f7af858a9e0053bf12d68ab0e0 | |
parent | Just exit if we get an error or HUP when poll()ing the keyboard. (diff) | |
download | wireguard-openbsd-74f9a82031b977c62c749a9778b92cd52f3bcce5.tar.xz wireguard-openbsd-74f9a82031b977c62c749a9778b92cd52f3bcce5.zip |
increase MSGBUFSIZE
-rw-r--r-- | sys/arch/macppc/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/include/param.h b/sys/arch/macppc/include/param.h index 47e01dd1307..838e256f5af 100644 --- a/sys/arch/macppc/include/param.h +++ b/sys/arch/macppc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.5 2013/03/23 16:12:24 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.6 2014/04/07 16:29:06 deraadt Exp $ */ /*- * Copyright (C) 1995, 1996 Wolfgang Solfrank. @@ -47,6 +47,6 @@ #define KERNBASE 0x100000 -#define MSGBUFSIZE (2 * PAGE_SIZE) +#define MSGBUFSIZE (4 * PAGE_SIZE) #endif /* _MACHINE_PARAM_H_ */ |