mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Tell malloc.c that AMD64 uses the same pagesize as i386.
This commit is contained in:
parent
0f055c5bd8
commit
5aed8cd5f6
1 changed files with 4 additions and 0 deletions
|
|
@ -62,6 +62,10 @@ __FBSDID("$FreeBSD$");
|
|||
# define malloc_pageshift 13U
|
||||
# define malloc_minsize 16U
|
||||
# endif
|
||||
# if defined(__amd64__)
|
||||
# define malloc_pageshift 12U
|
||||
# define malloc_minsize 16U
|
||||
# endif
|
||||
# if !defined(__NETBSD_SYSCALLS)
|
||||
# define HAS_UTRACE
|
||||
# endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue