Insert bits to allow successful compilation (and apparent success in

running) on FreeBSD.
This commit is contained in:
Devon H. O'Dell 2006-10-13 18:03:34 +00:00
parent 724af76462
commit 7b6452aa2d
4 changed files with 11 additions and 3 deletions

View file

@ -47,6 +47,10 @@
#include <fcntl.h>
#include <string.h>
#ifdef __FreeBSD__
#include <machine/param.h>
#endif
void
vmem_heap_init(void)
{
@ -84,8 +88,10 @@ umem_type_init(caddr_t start, size_t len, size_t pgsize)
SYSTEM_INFO info;
GetSystemInfo(&info);
pagesize = info.dwPageSize;
#else
#elseif !defined(__FreeBSD__)
pagesize = _sysconf(_SC_PAGESIZE);
#else
pagesize = PAGE_SIZE;
#endif
}

View file

@ -33,7 +33,9 @@
#include <string.h>
#ifdef HAVE_SYS_SYSMACROS_H
#include <sys/sysmacros.h>
#endif
#include "umem_base.h"

View file

@ -165,7 +165,7 @@ static INLINE uint_t ec_atomic_inc(uint_t *mem)
#ifdef _WIN32
#define issetugid() 0
#else
#elseif !defined(__FreeBSD__)
#define issetugid() (geteuid() == 0)
#endif

2
umem.c
View file

@ -518,7 +518,7 @@ umem_log_header_t *umem_failure_log;
umem_log_header_t *umem_slab_log;
extern thread_t _thr_self(void);
#if defined(__MACH__)
#if defined(__MACH__) || defined(__FreeBSD__)
# define CPUHINT() ((int)(_thr_self()))
#endif