Edit

Share via


WriteRaw

WriteRaw performs a raw write operation to a volatile LONG value without any memory ordering or atomicity semantics.

Syntax

VOID WriteRaw(
  LONG volatile *Destination,
  LONG          Value
);

Parameters

Destination

[out] A pointer to the volatile LONG variable to write to.

Value

[in] The LONG value to write to the destination.

Return value

None

Remarks

The WriteRaw function performs a raw memory write operation without compiler optimization barriers or synchronization guarantees.

Requirements

Requirement Value
Header wdm.h
IRQL Any level

See also

ReadRaw