X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Fsignal.h;h=5f39ddbd3943e65fa7b2cb11e7c3b8fea402a056;hb=d2e061a2bd3f7674cfef2e2217e0695419041b5e;hp=1b5890897803958c6f6cc6b8daa224c0c0e0a691;hpb=202911435b56fe007ca62fc6e573fa3ea238d337;p=musl diff --git a/include/signal.h b/include/signal.h index 1b589089..5f39ddbd 100644 --- a/include/signal.h +++ b/include/signal.h @@ -54,6 +54,7 @@ struct sigevent { int sigev_notify; void (*sigev_notify_function)(union sigval); pthread_attr_t *sigev_notify_attributes; + char __pad[56-3*sizeof(long)]; }; #define SIGEV_SIGNAL 0 @@ -86,6 +87,9 @@ int sigqueue(pid_t, int, const union sigval); int pthread_sigmask(int, const sigset_t *, sigset_t *); int pthread_kill(pthread_t, int); +void psiginfo(const siginfo_t *, const char *); +void psignal(int, const char *); + #endif #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)