File:  [DVB] / dietlibc / lib / timerfd_create.c
Revision 1.1: download - view: text, annotated - select for diffs
Tue Feb 19 00:28:13 2008 UTC (16 years, 3 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
  several fixes from Enrico Scholz (printf, string routines on big endian)
  add some more syscalls
  some minor cleanups
  shrink some string functions (Kris Katterjohn)

#include <sys/timerfd.h>

extern int __timerfd(int ufd, int clockid, int flags, const struct itimerspec *utmr);

int timerfd_create (clockid_t __clock_id, int __flags) {
  return __timerfd(-1,__clock_id,__flags,0);
}

LinuxTV legacy CVS <linuxtv.org/cvs>