mirror of https://github.com/acidanthera/audk.git
MdePkg/BaseSynchronizationLib: Fix function names in function headers
Some of the function names in function header comment blocks in assembly files do not match the symbol name in the assembly sources. Update function header comment blocks to match symbol name. Cc: Liming Gao <liming.gao@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Andrew Fish <afish@apple.com> Cc: Jeff Fan <jeff.fan@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael Kinney <michael.d.kinney@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
4cee954ea8
commit
fa1beef508
|
@ -27,7 +27,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT16
|
||||
; EFIAPI
|
||||
; InterlockedCompareExchange16 (
|
||||
; InternalSyncCompareExchange16 (
|
||||
; IN volatile UINT16 *Value,
|
||||
; IN UINT16 CompareValue,
|
||||
; IN UINT16 ExchangeValue
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT16
|
||||
; EFIAPI
|
||||
; InterlockedCompareExchange16 (
|
||||
; InternalSyncCompareExchange16 (
|
||||
; IN volatile UINT16 *Value,
|
||||
; IN UINT16 CompareValue,
|
||||
; IN UINT16 ExchangeValue
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT32
|
||||
; EFIAPI
|
||||
; InterlockedCompareExchange32 (
|
||||
; InternalSyncCompareExchange32 (
|
||||
; IN volatile UINT32 *Value,
|
||||
; IN UINT32 CompareValue,
|
||||
; IN UINT32 ExchangeValue
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT32
|
||||
; EFIAPI
|
||||
; InterlockedCompareExchange32 (
|
||||
; InternalSyncCompareExchange32 (
|
||||
; IN volatile UINT32 *Value,
|
||||
; IN UINT32 CompareValue,
|
||||
; IN UINT32 ExchangeValue
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT64
|
||||
; EFIAPI
|
||||
; InterlockedCompareExchange64 (
|
||||
; InternalSyncCompareExchange64 (
|
||||
; IN volatile UINT64 *Value,
|
||||
; IN UINT64 CompareValue,
|
||||
; IN UINT64 ExchangeValue
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT64
|
||||
; EFIAPI
|
||||
; InterlockedCompareExchange64 (
|
||||
; InternalSyncCompareExchange64 (
|
||||
; IN volatile UINT64 *Value,
|
||||
; IN UINT64 CompareValue,
|
||||
; IN UINT64 ExchangeValue
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT32
|
||||
; EFIAPI
|
||||
; InterlockedDecrement (
|
||||
; InternalSyncDecrement (
|
||||
; IN volatile UINT32 *Value
|
||||
; );
|
||||
;------------------------------------------------------------------------------
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT32
|
||||
; EFIAPI
|
||||
; InterlockedDecrement (
|
||||
; InternalSyncDecrement (
|
||||
; IN volatile UINT32 *Value
|
||||
; );
|
||||
;------------------------------------------------------------------------------
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT32
|
||||
; EFIAPI
|
||||
; InterlockedIncrement (
|
||||
; InternalSyncIncrement (
|
||||
; IN volatile UINT32 *Value
|
||||
; );
|
||||
;------------------------------------------------------------------------------
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
;------------------------------------------------------------------------------
|
||||
; UINT32
|
||||
; EFIAPI
|
||||
; InterlockedIncrement (
|
||||
; InternalSyncIncrement (
|
||||
; IN volatile UINT32 *Value
|
||||
; );
|
||||
;------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue