X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FInclude%2FLibrary%2FBaseLib.h;h=0c16c4813058fb11e688e115ea0a97c27aa20c0f;hb=fc30687f39436f5b5e00396a5161b30b70db8277;hp=83bdc3a168f10f3e8bd9591db5d411eb53c1fdc9;hpb=42eedea958591087603bbacd1c2227d2494026af;p=mirror_edk2.git diff --git a/MdePkg/Include/Library/BaseLib.h b/MdePkg/Include/Library/BaseLib.h index 83bdc3a168..0c16c48130 100644 --- a/MdePkg/Include/Library/BaseLib.h +++ b/MdePkg/Include/Library/BaseLib.h @@ -20,15 +20,15 @@ // These include SPIN_LOCK and BASE_LIBRARY_JUMP_BUFFER // -// -// SPIN_LOCK -// +/// +/// SPIN_LOCK +/// typedef volatile UINTN SPIN_LOCK; #if defined (MDE_CPU_IA32) -// -// IA32 context buffer used by SetJump() and LongJump() -// +/// +/// IA32 context buffer used by SetJump() and LongJump() +/// typedef struct { UINT32 Ebx; UINT32 Esi; @@ -42,9 +42,9 @@ typedef struct { #elif defined (MDE_CPU_IPF) -// -// IPF context buffer used by SetJump() and LongJump() -// +/// +/// IPF context buffer used by SetJump() and LongJump() +/// typedef struct { UINT64 F2[2]; UINT64 F3[2]; @@ -89,9 +89,9 @@ typedef struct { #define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 0x10 #elif defined (MDE_CPU_X64) -// -// X64 context buffer used by SetJump() and LongJump() -// +/// +/// X64 context buffer used by SetJump() and LongJump() +/// typedef struct { UINT64 Rbx; UINT64 Rsp; @@ -108,9 +108,9 @@ typedef struct { #define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 8 #elif defined (MDE_CPU_EBC) -// -// EBC context buffer used by SetJump() and LongJump() -// +/// +/// EBC context buffer used by SetJump() and LongJump() +/// typedef struct { UINT64 R0; UINT64 R1; @@ -3485,7 +3485,7 @@ CalculateCheckSum64 ( // typedef VOID -(EFIAPI *SWITCH_STACK_ENTRY_POINT) ( +(EFIAPI *SWITCH_STACK_ENTRY_POINT)( IN VOID *Context1, OPTIONAL IN VOID *Context2 OPTIONAL );