Lines Matching refs:notification
1196 struct sigevent notification; in SYSCALL_DEFINE2() local
1201 if (copy_from_user(¬ification, u_notification, in SYSCALL_DEFINE2()
1206 audit_mq_notify(mqdes, u_notification ? ¬ification : NULL); in SYSCALL_DEFINE2()
1211 if (unlikely(notification.sigev_notify != SIGEV_NONE && in SYSCALL_DEFINE2()
1212 notification.sigev_notify != SIGEV_SIGNAL && in SYSCALL_DEFINE2()
1213 notification.sigev_notify != SIGEV_THREAD)) in SYSCALL_DEFINE2()
1215 if (notification.sigev_notify == SIGEV_SIGNAL && in SYSCALL_DEFINE2()
1216 !valid_signal(notification.sigev_signo)) { in SYSCALL_DEFINE2()
1219 if (notification.sigev_notify == SIGEV_THREAD) { in SYSCALL_DEFINE2()
1229 notification.sigev_value.sival_ptr, in SYSCALL_DEFINE2()
1239 f = fdget(notification.sigev_signo); in SYSCALL_DEFINE2()
1287 switch (notification.sigev_notify) { in SYSCALL_DEFINE2()
1299 info->notify.sigev_signo = notification.sigev_signo; in SYSCALL_DEFINE2()
1300 info->notify.sigev_value = notification.sigev_value; in SYSCALL_DEFINE2()