When using sigaction, what is the proper method to determine that siginfo_t contains no data? Solaris sets the sicode to SI_NOINFO (32767) but I don't see an equivalent in glibc. Should I just check to see if si_errno is zero and assume that si_code is valid if the former is true? - cls