Searched refs:notif (Results 1 – 3 of 3) sorted by relevance
166 struct sigevent notif; in child_fn() local193 notif.sigev_notify = SIGEV_SIGNAL; in child_fn()194 notif.sigev_signo = SIGUSR1; in child_fn()195 notif.sigev_value.sival_int = mqd; in child_fn()196 if (ltp_syscall(__NR_mq_notify, mqd, ¬if) == -1) { in child_fn()
255 struct sigevent notif; in main() local287 notif.sigev_notify = SIGEV_SIGNAL; in main()288 notif.sigev_signo = SIGUSR1; in main()291 notif.sigev_value.sival_ptr = &info; in main()292 if (ltp_syscall(__NR_mq_notify, mqd, ¬if) == (mqd_t) -1) { in main()
2018 add_notifier(notif, func, arg) in add_notifier() argument2019 struct notifier **notif; in add_notifier()2028 np->next = *notif;2031 *notif = np;2039 remove_notifier(notif, func, arg) in remove_notifier() argument2040 struct notifier **notif; in remove_notifier()2046 for (; (np = *notif) != 0; notif = &np->next) {2048 *notif = np->next;2059 notify(notif, val) in notify() argument2060 struct notifier *notif; in notify()[all …]