X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=os%2Fos-mac.h;h=553f82007fae7c23a83a5b89ac77108907e2cb18;hp=9f19b8ab1879b00a24340cb4ec168388a4618be9;hb=12ae1bee0755c331b0d17e1f357707ca3e7d9113;hpb=79d73100a13f54d3c64beb6944924ed3d9caecf8 diff --git a/os/os-mac.h b/os/os-mac.h index 9f19b8ab..553f8200 100644 --- a/os/os-mac.h +++ b/os/os-mac.h @@ -27,6 +27,7 @@ #define FIO_HAVE_POSIXAIO #define FIO_HAVE_CLOCK_MONOTONIC #define FIO_USE_GENERIC_RAND +#define FIO_USE_GENERIC_INIT_RANDOM_STATE #define FIO_HAVE_GETTID #define FIO_HAVE_CHARDEV_SIZE @@ -69,17 +70,6 @@ struct itimerspec { static struct sigevent fio_timers[MAX_TIMERS]; static unsigned int num_timers = 0; -static inline int timer_create(clockid_t clockid, struct sigevent *restrict evp, - timer_t *restrict timerid) -{ - int current_timer = num_timers; - fio_timers[current_timer] = *evp; - num_timers++; - - *timerid = current_timer; - return 0; -} - static void sig_alrm(int signum) { union sigval sv; @@ -96,7 +86,8 @@ static void sig_alrm(int signum) } static inline int timer_settime(timer_t timerid, int flags, - const struct itimerspec *value, struct itimerspec *ovalue) + const struct itimerspec *value, + struct itimerspec *ovalue) { struct sigaction sa; struct itimerval tv;