Browse Source

Use __BIGGEST_ALIGNMENT__ instead of max_align_t (#375)

Also, remove no longer necessary __need_STDDEF_H_misc stuff.

References:
https://github.com/WebAssembly/wasi-libc/pull/335
https://github.com/WebAssembly/wasi-sdk/issues/111
2e999b7dd1/clang/lib/Headers/stddef.h (L106-L113)
sunfishcode/update-emmalloc wasi-sdk-19
YAMAMOTO Takashi 2 years ago
committed by GitHub
parent
commit
a1c7c2c7a4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      libc-bottom-half/headers/public/__struct_sockaddr.h
  2. 5
      libc-bottom-half/headers/public/__struct_sockaddr_in.h
  3. 5
      libc-bottom-half/headers/public/__struct_sockaddr_in6.h
  4. 5
      libc-bottom-half/headers/public/__struct_sockaddr_storage.h
  5. 5
      libc-bottom-half/headers/public/__struct_sockaddr_un.h

3
libc-bottom-half/headers/public/__struct_sockaddr.h

@ -1,9 +1,6 @@
#ifndef __wasilibc___struct_sockaddr_h
#define __wasilibc___struct_sockaddr_h
#define __need_STDDEF_H_misc
#include <stddef.h>
#include <__typedef_sa_family_t.h>
struct sockaddr {

5
libc-bottom-half/headers/public/__struct_sockaddr_in.h

@ -1,15 +1,12 @@
#ifndef __wasilibc___struct_sockaddr_in_h
#define __wasilibc___struct_sockaddr_in_h
#define __need_STDDEF_H_misc
#include <stddef.h>
#include <__typedef_sa_family_t.h>
#include <__typedef_in_port_t.h>
#include <__struct_in_addr.h>
struct sockaddr_in {
_Alignas(max_align_t) sa_family_t sin_family;
__attribute__((aligned(__BIGGEST_ALIGNMENT__))) sa_family_t sin_family;
in_port_t sin_port;
struct in_addr sin_addr;
};

5
libc-bottom-half/headers/public/__struct_sockaddr_in6.h

@ -1,15 +1,12 @@
#ifndef __wasilibc___struct_sockaddr_in6_h
#define __wasilibc___struct_sockaddr_in6_h
#define __need_STDDEF_H_misc
#include <stddef.h>
#include <__typedef_sa_family_t.h>
#include <__typedef_in_port_t.h>
#include <__struct_in6_addr.h>
struct sockaddr_in6 {
_Alignas(max_align_t) sa_family_t sin6_family;
__attribute__((aligned(__BIGGEST_ALIGNMENT__))) sa_family_t sin6_family;
in_port_t sin6_port;
unsigned sin6_flowinfo;
struct in6_addr sin6_addr;

5
libc-bottom-half/headers/public/__struct_sockaddr_storage.h

@ -1,13 +1,10 @@
#ifndef __wasilibc___struct_sockaddr_storage_h
#define __wasilibc___struct_sockaddr_storage_h
#define __need_STDDEF_H_misc
#include <stddef.h>
#include <__typedef_sa_family_t.h>
struct sockaddr_storage {
_Alignas(max_align_t) sa_family_t ss_family;
__attribute__((aligned(__BIGGEST_ALIGNMENT__))) sa_family_t ss_family;
char __ss_data[32];
};

5
libc-bottom-half/headers/public/__struct_sockaddr_un.h

@ -1,13 +1,10 @@
#ifndef __wasilibc___struct_sockaddr_un_h
#define __wasilibc___struct_sockaddr_un_h
#define __need_STDDEF_H_misc
#include <stddef.h>
#include <__typedef_sa_family_t.h>
struct sockaddr_un {
_Alignas(max_align_t) sa_family_t sun_family;
__attribute__((aligned(__BIGGEST_ALIGNMENT__))) sa_family_t sun_family;
};
#endif

Loading…
Cancel
Save