Lines Matching defs:nsig
1359 convert_old_sigevent(struct osigevent *osig, struct sigevent *nsig)
1366 nsig->sigev_notify = osig->sigev_notify;
1367 switch (nsig->sigev_notify) {
1371 nsig->sigev_signo = osig->__sigev_u.__sigev_signo;
1374 nsig->sigev_notify_kqueue =
1376 nsig->sigev_value.sival_ptr = osig->sigev_value.sival_ptr;
2735 convert_old_sigevent32(struct osigevent32 *osig, struct sigevent *nsig)
2742 CP(*osig, *nsig, sigev_notify);
2743 switch (nsig->sigev_notify) {
2747 nsig->sigev_signo = osig->__sigev_u.__sigev_signo;
2750 nsig->sigev_notify_kqueue =
2752 PTRIN_CP(*osig, *nsig, sigev_value.sival_ptr);