remove [64] cleanup TODO
[trinity.git] / syscalls / mq_notify.c
blob5f678c9367a1b07541d63b90ad3687f8f91ad6d1
1 /*
2 * SYSCALL_DEFINE2(mq_notify, mqd_t, mqdes, const struct sigevent __user *, u_notification)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_mq_notify = {
7 .name = "mq_notify",
8 .num_args = 2,
9 .arg1name = "mqdes",
10 .arg1type = ARG_FD,
11 .arg2name = "u_notification",
12 .arg2type = ARG_ADDRESS,
13 .flags = NEED_ALARM,