Lines Matching refs:notification
631 * to read only queue size & notification info (the only values
784 /* notification
834 /* after notification unregisters process */
1314 * and he isn't currently owner of notification, will be silently discarded.
1317 static int do_mq_notify(mqd_t mqdes, const struct sigevent *notification)
1326 audit_mq_notify(mqdes, notification);
1330 if (notification != NULL) {
1331 if (unlikely(notification->sigev_notify != SIGEV_NONE &&
1332 notification->sigev_notify != SIGEV_SIGNAL &&
1333 notification->sigev_notify != SIGEV_THREAD))
1335 if (notification->sigev_notify == SIGEV_SIGNAL &&
1336 !valid_signal(notification->sigev_signo)) {
1339 if (notification->sigev_notify == SIGEV_THREAD) {
1348 notification->sigev_value.sival_ptr,
1358 f = fdget(notification->sigev_signo);
1396 if (notification == NULL) {
1404 switch (notification->sigev_notify) {
1416 info->notify.sigev_signo = notification->sigev_signo;
1417 info->notify.sigev_value = notification->sigev_value;