- add configure check for the abort function, which I will use as a
choice when a panic occurs.
This commit is contained in:
parent
7279914d1b
commit
cd88c86840
@ -189,6 +189,7 @@
|
||||
#define BX_HAVE_SLEEP 0
|
||||
#define BX_HAVE_USLEEP 0
|
||||
#define BX_HAVE_NANOSLEEP 0
|
||||
#define BX_HAVE_ABORT 0
|
||||
|
||||
// Use Static Member Funtions to eliminate 'this' pointer passing
|
||||
// If you want the efficiency of 'C', you can make all the
|
||||
|
9460
bochs/configure
vendored
9460
bochs/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -30,6 +30,7 @@ AC_CHECK_FUNCS(strdup, AC_DEFINE(BX_HAVE_STRDUP))
|
||||
AC_CHECK_FUNCS(sleep, AC_DEFINE(BX_HAVE_SLEEP))
|
||||
AC_CHECK_FUNCS(usleep, AC_DEFINE(BX_HAVE_USLEEP))
|
||||
AC_CHECK_FUNCS(nanosleep, AC_DEFINE(BX_HAVE_NANOSLEEP))
|
||||
AC_CHECK_FUNCS(abort, AC_DEFINE(BX_HAVE_ABORT))
|
||||
|
||||
AC_MSG_CHECKING(for struct timeval)
|
||||
AC_TRY_COMPILE([#include <sys/time.h>],
|
||||
|
Loading…
x
Reference in New Issue
Block a user