OpenBSD fixes. Fixes issue 176.
This commit is contained in:
parent
1d8d067caf
commit
83bdcb541c
5
extern/poshlib/posh.h
vendored
5
extern/poshlib/posh.h
vendored
@ -306,6 +306,11 @@ LLVM:
|
|||||||
# define POSH_OS_STRING "FreeBSD"
|
# define POSH_OS_STRING "FreeBSD"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined __OpenBSD__
|
||||||
|
# define POSH_OS_OPENBSD 1
|
||||||
|
# define POSH_OS_STRING "OpenBSD"
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined __CYGWIN32__
|
#if defined __CYGWIN32__
|
||||||
# define POSH_OS_CYGWIN32 1
|
# define POSH_OS_CYGWIN32 1
|
||||||
# define POSH_OS_STRING "Cygwin"
|
# define POSH_OS_STRING "Cygwin"
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
#include "StdStream.h" // fileOpen
|
#include "StdStream.h" // fileOpen
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
// Extern
|
// Extern
|
||||||
#if NV_OS_WIN32 //&& NV_CC_MSVC
|
#if NV_OS_WIN32 //&& NV_CC_MSVC
|
||||||
# define WIN32_LEAN_AND_MEAN
|
# define WIN32_LEAN_AND_MEAN
|
||||||
@ -38,7 +40,7 @@
|
|||||||
# include <signal.h>
|
# include <signal.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if NV_OS_LINUX || NV_OS_DARWIN || NV_OS_FREEBSD
|
#if NV_OS_UNIX
|
||||||
# include <unistd.h> // getpid
|
# include <unistd.h> // getpid
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -49,10 +51,13 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if NV_OS_DARWIN || NV_OS_FREEBSD
|
#if NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_OPENBSD
|
||||||
# include <sys/types.h>
|
# include <sys/types.h>
|
||||||
|
# include <sys/param.h>
|
||||||
# include <sys/sysctl.h> // sysctl
|
# include <sys/sysctl.h> // sysctl
|
||||||
|
# if !defined(NV_OS_OPENBSD)
|
||||||
# include <sys/ucontext.h>
|
# include <sys/ucontext.h>
|
||||||
|
# endif
|
||||||
# if defined(HAVE_EXECINFO_H) // only after OSX 10.5
|
# if defined(HAVE_EXECINFO_H) // only after OSX 10.5
|
||||||
# include <execinfo.h> // backtrace
|
# include <execinfo.h> // backtrace
|
||||||
# if NV_CC_GNUC // defined(HAVE_CXXABI_H)
|
# if NV_CC_GNUC // defined(HAVE_CXXABI_H)
|
||||||
@ -595,6 +600,16 @@ namespace
|
|||||||
# else
|
# else
|
||||||
# error "Unknown CPU"
|
# error "Unknown CPU"
|
||||||
# endif
|
# endif
|
||||||
|
#elif NV_OS_OPENBSD
|
||||||
|
# if NV_CPU_X86_64
|
||||||
|
ucontext_t * ucp = (ucontext_t *)secret;
|
||||||
|
return (void *)ucp->sc_rip;
|
||||||
|
# elif NV_CPU_X86
|
||||||
|
ucontext_t * ucp = (ucontext_t *)secret;
|
||||||
|
return (void *)ucp->sc_eip;
|
||||||
|
# else
|
||||||
|
# error "Unknown CPU"
|
||||||
|
# endif
|
||||||
#else
|
#else
|
||||||
# if NV_CPU_X86_64
|
# if NV_CPU_X86_64
|
||||||
// #define REG_RIP REG_INDEX(rip) // seems to be 16
|
// #define REG_RIP REG_INDEX(rip) // seems to be 16
|
||||||
|
@ -40,6 +40,9 @@
|
|||||||
#elif defined POSH_OS_FREEBSD
|
#elif defined POSH_OS_FREEBSD
|
||||||
# define NV_OS_FREEBSD 1
|
# define NV_OS_FREEBSD 1
|
||||||
# define NV_OS_UNIX 1
|
# define NV_OS_UNIX 1
|
||||||
|
#elif defined POSH_OS_OPENBSD
|
||||||
|
# define NV_OS_OPENBSD 1
|
||||||
|
# define NV_OS_UNIX 1
|
||||||
#elif defined POSH_OS_CYGWIN32
|
#elif defined POSH_OS_CYGWIN32
|
||||||
# define NV_OS_CYGWIN 1
|
# define NV_OS_CYGWIN 1
|
||||||
#elif defined POSH_OS_MINGW
|
#elif defined POSH_OS_MINGW
|
||||||
@ -242,7 +245,7 @@ NV_COMPILER_CHECK(sizeof(uint32) == 4);
|
|||||||
#elif NV_CC_GNUC
|
#elif NV_CC_GNUC
|
||||||
# if NV_OS_LINUX
|
# if NV_OS_LINUX
|
||||||
# include "DefsGnucLinux.h"
|
# include "DefsGnucLinux.h"
|
||||||
# elif NV_OS_DARWIN || NV_OS_FREEBSD
|
# elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_OPENBSD
|
||||||
# include "DefsGnucDarwin.h"
|
# include "DefsGnucDarwin.h"
|
||||||
# elif NV_OS_MINGW
|
# elif NV_OS_MINGW
|
||||||
# include "DefsGnucWin32.h"
|
# include "DefsGnucWin32.h"
|
||||||
|
@ -132,7 +132,7 @@ namespace nv
|
|||||||
{
|
{
|
||||||
#if NV_OS_WIN32 || NV_OS_XBOX
|
#if NV_OS_WIN32 || NV_OS_XBOX
|
||||||
return _finite(f) != 0;
|
return _finite(f) != 0;
|
||||||
#elif NV_OS_DARWIN || NV_OS_FREEBSD
|
#elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_OPENBSD
|
||||||
return isfinite(f);
|
return isfinite(f);
|
||||||
#elif NV_OS_LINUX
|
#elif NV_OS_LINUX
|
||||||
return finitef(f);
|
return finitef(f);
|
||||||
@ -147,7 +147,7 @@ namespace nv
|
|||||||
{
|
{
|
||||||
#if NV_OS_WIN32 || NV_OS_XBOX
|
#if NV_OS_WIN32 || NV_OS_XBOX
|
||||||
return _isnan(f) != 0;
|
return _isnan(f) != 0;
|
||||||
#elif NV_OS_DARWIN || NV_OS_FREEBSD
|
#elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_OPENBSD
|
||||||
return isnan(f);
|
return isnan(f);
|
||||||
#elif NV_OS_LINUX
|
#elif NV_OS_LINUX
|
||||||
return isnanf(f);
|
return isnanf(f);
|
||||||
|
@ -5,23 +5,11 @@
|
|||||||
#include "Thread.h"
|
#include "Thread.h"
|
||||||
|
|
||||||
#if NV_OS_WIN32
|
#if NV_OS_WIN32
|
||||||
#include "Win32.h"
|
# include "Win32.h"
|
||||||
#elif NV_OS_UNIX
|
#elif NV_OS_UNIX
|
||||||
#include <sys/types.h>
|
# include <sys/types.h>
|
||||||
#include <sys/sysctl.h>
|
# include <sys/param.h>
|
||||||
#elif NV_OS_DARWIN
|
# include <sys/sysctl.h>
|
||||||
#import <stdio.h>
|
|
||||||
#import <string.h>
|
|
||||||
#import <mach/mach_host.h>
|
|
||||||
#import <sys/sysctl.h>
|
|
||||||
|
|
||||||
//#include <CoreFoundation/CoreFoundation.h>
|
|
||||||
|
|
||||||
#include <assert.h>
|
|
||||||
#include <errno.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <syslog.h>
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
using namespace nv;
|
using namespace nv;
|
||||||
@ -39,14 +27,19 @@ uint nv::hardwareThreadCount() {
|
|||||||
return 3; // or 6?
|
return 3; // or 6?
|
||||||
#elif NV_OS_LINUX // Linux, Solaris, & AIX
|
#elif NV_OS_LINUX // Linux, Solaris, & AIX
|
||||||
return sysconf(_SC_NPROCESSORS_ONLN);
|
return sysconf(_SC_NPROCESSORS_ONLN);
|
||||||
#elif NV_OS_DARWIN || NV_OS_FREEBSD
|
#elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_OPENBSD
|
||||||
int numCPU;
|
int numCPU;
|
||||||
int mib[4];
|
int mib[4];
|
||||||
size_t len = sizeof(numCPU);
|
size_t len = sizeof(numCPU);
|
||||||
|
|
||||||
// set the mib for hw.ncpu
|
// set the mib for hw.ncpu
|
||||||
mib[0] = CTL_HW;
|
mib[0] = CTL_HW;
|
||||||
mib[1] = HW_AVAILCPU; // alternatively, try HW_NCPU;
|
|
||||||
|
#if NV_OS_OPENBSD
|
||||||
|
mib[1] = HW_NCPU;
|
||||||
|
#else
|
||||||
|
mib[1] = HW_AVAILCPU;
|
||||||
|
#endif
|
||||||
|
|
||||||
// get the number of CPUs from the system
|
// get the number of CPUs from the system
|
||||||
sysctl(mib, 2, &numCPU, &len, NULL, 0);
|
sysctl(mib, 2, &numCPU, &len, NULL, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user