From: Jens Axboe Date: Fri, 3 Feb 2012 13:45:38 +0000 (+0100) Subject: mac: remove unused timer_create() X-Git-Tag: fio-2.0.3~3 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=0c4ce7ce9ce7fa0d644020816feefdf9c3a64a4e;hp=-c mac: remove unused timer_create() Signed-off-by: Jens Axboe --- 0c4ce7ce9ce7fa0d644020816feefdf9c3a64a4e 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;