do not spit errors on non x86 timerfd_create

This commit is contained in:
Unbit
2013-11-18 16:21:36 +01:00
parent e606d1e5d1
commit 5806c333f5
+2
View File
@@ -1241,6 +1241,8 @@ static int timerfd_settime(int __ufd, int __flags, __const struct itimerspec *__
return syscall(286, __ufd, __flags, __utmr, __otmr);
#elif defined(__i386__)
return syscall(325, __ufd, __flags, __utmr, __otmr);
#else
return -1;
#endif
}
#endif