Lines Matching refs:sev
774 } sev;
776 if (umove(tcp, arg, &sev) < 0)
779 tprintf("{%#x, ", sev.sigev_value);
780 if (sev.sigev_notify == SIGEV_SIGNAL)
781 tprintf("%s, ", signame(sev.sigev_signo));
783 tprintf("%u, ", sev.sigev_signo);
784 printxval(sigev_value, sev.sigev_notify + 1, "SIGEV_???");
786 if (sev.sigev_notify == SIGEV_THREAD_ID)
787 tprintf("{%d}", sev.un.tid);
788 else if (sev.sigev_notify == SIGEV_THREAD)
790 sev.un.thread.function,
791 sev.un.thread.attribute);
802 struct sigevent sev;
811 if (umove (tcp, arg, &sev) < 0)
814 tprintf("{%p, ", sev.sigev_value.sival_ptr);
815 if (sev.sigev_notify == SIGEV_SIGNAL)
816 tprintf("%s, ", signame(sev.sigev_signo));
818 tprintf("%u, ", sev.sigev_signo);
819 printxval(sigev_value, sev.sigev_notify+1, "SIGEV_???");
821 if (sev.sigev_notify == SIGEV_THREAD_ID)
825 tprintf("{%d}", sev._sigev_un._pad[0]);
826 else if (sev.sigev_notify == SIGEV_THREAD)
827 tprintf("{%p, %p}", sev.sigev_notify_function,
828 sev.sigev_notify_attributes);