make-it-fail fixes
[trinity.git] / syscalls / nanosleep.c
blobfb0ddae267e241ea8acc702e8768123789918f59
1 /*
2 * SYSCALL_DEFINE2(nanosleep, struct timespec __user *, rqtp, struct timespec __user *, rmtp)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_nanosleep = {
7 .name = "nanosleep",
8 .num_args = 2,
9 .arg1name = "rqtp",
10 .arg1type = ARG_ADDRESS,
11 .arg2name = "rmtp",
12 .arg2type = ARG_ADDRESS,
13 .flags = AVOID_SYSCALL, // Boring. Can cause long sleeps.