aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2023-02-19 18:11:05 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-02-27 23:16:34 +0100
commitd486384a2c027a69666a1f9392712ad3fecde2e7 (patch)
treeb5f67f379ca418583700a68a991f220c2567e49e /utils.c
parentd69cf5529d3fdbbfd3d1d6b429a67f912e3c4f44 (diff)
downloadmig-d486384a2c027a69666a1f9392712ad3fecde2e7.tar.gz
mig-d486384a2c027a69666a1f9392712ad3fecde2e7.tar.bz2
mig-d486384a2c027a69666a1f9392712ad3fecde2e7.zip
Change complex_align_of to be sizeof(uintptr_t)
By using uintptr_t, we ensure that all 64 bit stubs are free of undefined behavior since we support up to 8-byte alignment. This works fine given that Mig will type check types that have higher alignment requirements through the use of _Static_assert. This even works for a 64 bit kernel / 32 bit user land since we can use mig64 to build stubs for the 8-byte aligned kernel stubs and existing 32 bit mig to build the old user side stubs. Pragma is no longer required as we take advantage of the compiler to drive the alignment and avoid undefined behavior. Message-Id: <Y/KsiXZKkq1q/D+3@jupiter.tail36e24.ts.net>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/utils.c b/utils.c
index 000a47f..64ab496 100644
--- a/utils.c
+++ b/utils.c
@@ -347,12 +347,10 @@ void
WriteStructDecl(FILE *file, const argument_t *args, write_list_fn_t *func,
u_int mask, const char *name)
{
- fprintf(file, "#pragma pack(push,%d)\n", complex_alignof);
fprintf(file, "\ttypedef struct {\n");
fprintf(file, "\t\tmach_msg_header_t Head;\n");
WriteList(file, args, func, mask, "\n", "\n");
fprintf(file, "\t} %s;\n", name);
- fprintf(file, "#pragma pack(pop)\n");
fprintf(file, "\n");
}