Browse Source

fix some struct padding to match LSB/glibc ABI where it may be helpful

Rich Felker 13 years ago
parent
commit
7f5471529c
2 changed files with 5 additions and 2 deletions
  1. 1 0
      include/signal.h
  2. 4 2
      include/sys/socket.h

+ 1 - 0
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

+ 4 - 2
include/sys/socket.h

@@ -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);