// // These need to be kept separate from pthread_sigmask, sigblock, sigsetmask, // sighold, and sigset because libsigchain only intercepts sigprocmask so we // can't allow clang to decide to inline sigprocmask. //
int sigprocmask64(int how, const sigset64_t* new_set,
sigset64_t* old_set) __attribute__((__noinline__)) { // how is only checked for validity if new_set is provided. if (new_set && how != SIG_BLOCK && how != SIG_UNBLOCK && how != SIG_SETMASK) {
errno = EINVAL; return -1;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.