Tell malloc.c that AMD64 uses the same pagesize as i386.

This commit is contained in:
Peter Wemm 2003-04-30 19:30:34 +00:00
parent 0f055c5bd8
commit 5aed8cd5f6

View file

@ -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