3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

Fixed timer bug on freebsd

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-12-07 06:07:57 -08:00
parent 5b2dced157
commit 8d45de02c5

View file

@ -43,7 +43,7 @@ Revision History:
#define CLOCKID CLOCK_PROCESS_CPUTIME_ID
#else
// FreeBSD does not support CLOCK_PROCESS_CPUTIME_ID
#define CLOCKID CLOCK_PROF
#define CLOCKID CLOCK_MONOTONIC
#endif
#define SIG SIGRTMIN
// ---------