mirror of git://git.musl-libc.org/musl
fix some struct padding to match LSB/glibc ABI where it may be helpful
This commit is contained in:
parent
32aea2087a
commit
7f5471529c
|
@ -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
|
||||
|
|
|
@ -26,8 +26,10 @@ struct sockaddr
|
|||
struct sockaddr_storage
|
||||
{
|
||||
sa_family_t ss_family;
|
||||
long long __ss_align;
|
||||
char __ss_padding[128 - sizeof(sa_family_t) - sizeof(long long)];
|
||||
union {
|
||||
long long __align;
|
||||
char __padding[126];
|
||||
} __padding;
|
||||
};
|
||||
|
||||
int socket (int, int, int);
|
||||
|
|
Loading…
Reference in New Issue