Simplify single linked list header
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-02-11 12:41:00 +01:00
parent 4cae0447c1
commit 6411fc3ae9
2 changed files with 5 additions and 13 deletions

View File

@@ -57,19 +57,11 @@ typedef struct _SINGLE_LIST_ENTRY
} SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY;
/* Header for a sequenced single linked list union definition */
typedef union _SINGLE_LIST_HEADER
typedef struct _SINGLE_LIST_HEADER
{
ULONGLONG Alignment;
union
{
struct
{
SINGLE_LIST_ENTRY Next;
USHORT Depth;
USHORT Sequence;
};
ULONGLONG Region;
};
SINGLE_LIST_ENTRY Next;
USHORT Depth;
USHORT Sequence;
} SINGLE_LIST_HEADER, *PSINGLE_LIST_HEADER;
/* 128-bit 16-byte aligned XMM register */