diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-06-16 17:11:35 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-06-16 17:11:35 -0400 |
commit | 7f5471529c2f85ce528292ea5d4a146597d47588 (patch) | |
tree | 303c6c3747fd6f805f8981607f0d3ca0b3d42b07 /include/signal.h | |
parent | 32aea2087a699bb4bd9c34347b6ef8d164ee0d0b (diff) | |
download | musl-7f5471529c2f85ce528292ea5d4a146597d47588.tar.gz musl-7f5471529c2f85ce528292ea5d4a146597d47588.tar.bz2 musl-7f5471529c2f85ce528292ea5d4a146597d47588.tar.xz musl-7f5471529c2f85ce528292ea5d4a146597d47588.zip |
fix some struct padding to match LSB/glibc ABI where it may be helpful
Diffstat (limited to 'include/signal.h')
-rw-r--r-- | include/signal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/signal.h b/include/signal.h index 1b589089..6625981f 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 |