mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use 8k pagesize on alpha, not 4k.
This commit is contained in:
parent
09d2cff163
commit
cea1d019fe
1 changed files with 5 additions and 1 deletions
|
|
@ -6,7 +6,7 @@
|
|||
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
||||
* ----------------------------------------------------------------------------
|
||||
*
|
||||
* $Id: malloc.c,v 1.40 1998/09/19 20:55:36 alex Exp $
|
||||
* $Id: malloc.c,v 1.41 1998/09/20 01:07:50 alex Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
@ -47,6 +47,10 @@
|
|||
# define malloc_pageshift 12U
|
||||
# define malloc_minsize 16U
|
||||
# endif
|
||||
# if defined(__alpha__)
|
||||
# define malloc_pageshift 13U
|
||||
# define malloc_minsize 16U
|
||||
# endif
|
||||
# if !defined(__NETBSD_SYSCALLS)
|
||||
# define HAS_UTRACE
|
||||
# endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue