Page MenuHomeFreeBSD

Define max_align_t for C11.
ClosedPublic

Authored by jhb on Oct 8 2016, 6:26 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Nov 27, 6:45 PM
Unknown Object (File)
Tue, Nov 25, 9:00 PM
Unknown Object (File)
Mon, Nov 24, 7:14 AM
Unknown Object (File)
Sun, Nov 23, 8:55 PM
Unknown Object (File)
Fri, Nov 21, 2:07 AM
Unknown Object (File)
Fri, Nov 21, 2:04 AM
Unknown Object (File)
Fri, Nov 21, 2:03 AM
Unknown Object (File)
Fri, Nov 21, 1:59 AM
Subscribers

Details

Summary

Define max_align_t for C11.

libc++'s stddef.h includes an existing definition of max_align_t for
C++11, but it is only defined for C++, not for C. In addition, GCC and
clang both define an alternate version of max_align_t that uses a
union of multiple types rather than a plain long double as in libc++.
This adds a __max_align_t to <sys/_types.h> that matches the GCC and
clang definition that is mapped to max_align_t in <stddef.h>.

PR: 210890

Test Plan
  • universe and an exp-run. One port failed during the exp-run which I still haven't fixed.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jhb retitled this revision from to Define max_align_t for C11..
jhb updated this object.
jhb edited the test plan for this revision. (Show Details)
jhb added a reviewer: dim.
  • Fix name of GCC macro used to note that max_align_t is defined.
dim edited edge metadata.

LGTM.

This revision is now accepted and ready to land.Oct 20 2016, 6:50 PM
This revision was automatically updated to reflect the committed changes.