- add configure check for the abort function, which I will use as a

choice when a panic occurs.
This commit is contained in:
Bryce Denney 2001-10-07 00:10:19 +00:00
parent 7279914d1b
commit cd88c86840
3 changed files with 2918 additions and 6544 deletions

View File

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

File diff suppressed because it is too large Load Diff

View File

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