diff options
-rw-r--r-- | routine.c | 4 | ||||
-rw-r--r-- | utils.c | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -321,9 +321,9 @@ rtFindSize(const argument_t *args, u_int mask) { ipc_type_t *it = arg->argType; + /* might need proper alignment on demanding 64bit archies */ + size = (size + word_size-1) & ~(word_size-1); if (arg->argLongForm) { - /* might need proper alignment on 64bit archies */ - size = (size + word_size-1) & ~(word_size-1); size += sizeof_mach_msg_type_long_t; } else { size += sizeof_mach_msg_type_t; @@ -338,10 +338,12 @@ 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", word_size); 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"); } |