X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=os%2Fos-mac.h;h=aec30f962e5ccf403edb5d69692253f2bb550071;hp=9f19b8ab1879b00a24340cb4ec168388a4618be9;hb=0c4ce7ce9ce7fa0d644020816feefdf9c3a64a4e;hpb=5bd9c78ce361e3a924013299c53fd823fba05818 diff --git a/os/os-mac.h b/os/os-mac.h index 9f19b8ab..aec30f96 100644 --- a/os/os-mac.h +++ b/os/os-mac.h @@ -69,17 +69,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 +85,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;