timerfd_create workaround

This commit is contained in:
roberto@debian32
2011-10-26 05:45:06 +02:00
parent 088c70efdc
commit 3c4db7e97e
+2
View File
@@ -693,6 +693,8 @@ static int timerfd_create (clockid_t __clock_id, int __flags) {
return syscall(283, __clock_id, __flags);
#elif defined(__i386__)
return syscall(322, __clock_id, __flags);
#else
return -1;
#endif
}