source: azure_iot_hub/trunk/musl-1.1.18/src/linux/timerfd.c@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
File size: 408 bytes
Line 
1#include <sys/timerfd.h>
2#include "syscall.h"
3
4int timerfd_create(int clockid, int flags)
5{
6 return syscall(SYS_timerfd_create, clockid, flags);
7}
8
9int timerfd_settime(int fd, int flags, const struct itimerspec *new, struct itimerspec *old)
10{
11 return syscall(SYS_timerfd_settime, fd, flags, new, old);
12}
13
14int timerfd_gettime(int fd, struct itimerspec *cur)
15{
16 return syscall(SYS_timerfd_gettime, fd, cur);
17}
Note: See TracBrowser for help on using the repository browser.