1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-23 07:46:22 +00:00
debugging/03_day/check-0.10.0/lib/timer_create.c
2015-12-13 22:34:58 +09:00

15 lines
370 B
C

#include "libcompat.h"
int timer_create(clockid_t clockid CK_ATTRIBUTE_UNUSED,
struct sigevent *sevp CK_ATTRIBUTE_UNUSED,
timer_t * timerid CK_ATTRIBUTE_UNUSED)
{
/*
* The create function does nothing. timer_settime will use
* alarm to set the timer, and timer_delete will stop the
* alarm
*/
return 0;
}