Skip to content

Commit

Permalink
Add reserved space for compatibility checks.
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Rule (VM/EMT3) <[email protected]>
  • Loading branch information
timrulebosch committed Oct 23, 2024
1 parent 5dbbb21 commit b902d9a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions dse/clib/data/marshal.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ typedef struct MarshalGroup {
MarshalStringEncode* string_encode;
MarshalStringDecode* string_decode;
} functions;

/* Reserved. */
uint64_t __reserved__[4];
} MarshalGroup;


Expand Down Expand Up @@ -188,6 +191,9 @@ typedef struct MarshalStruct {
uint32_t* binary_len;
uint32_t* binary_buffer_size;
} source;

/* Reserved. */
uint64_t __reserved__[4];
} MarshalStruct;


Expand All @@ -203,6 +209,9 @@ typedef struct MarshalMapSpec {
};
uint32_t* binary_len;
uint32_t* binary_buffer_size;

/* Reserved. */
uint64_t __reserved__[4];
} MarshalMapSpec;


Expand Down Expand Up @@ -233,6 +242,9 @@ typedef struct MarshalSignalMap {
};
uint32_t* binary_len;
} source;

/* Reserved. */
uint64_t __reserved__[4];
} MarshalSignalMap;


Expand Down

0 comments on commit b902d9a

Please sign in to comment.