IoWriteErrorLogEntry - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntifs.h

VOID IoWriteErrorLogEntry(
  [in] PVOID ElEntry
);

View the official Windows Driver Kit DDI reference
// wdm.h

VOID IoWriteErrorLogEntry(
  [in] PVOID ElEntry
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntifs-iowriteerrorlogentry)

IoWriteErrorLogEntry function (ntifs.h)

Description

The IoWriteErrorLogEntry routine queues a given error log packet to the system error logging thread.

Parameters

ElEntry [in]

Pointer to the error log packet the driver has allocated with IoAllocateErrorLogEntry and filled in by the caller.

Remarks

IoWriteErrorLogEntry frees the error log entry. Drivers must not call IoFreeErrorLogEntry on a log entry that they have already passed to IoWriteErrorLogEntry.

See also

IO_ERROR_LOG_PACKET

IoAllocateErrorLogEntry

IoFreeErrorLogEntry


Windows Driver Kit DDI reference (nf-wdm-iowriteerrorlogentry)

IoWriteErrorLogEntry function (wdm.h)

Description

The IoWriteErrorLogEntry routine queues a given error log packet to the system error logging thread.

Parameters

ElEntry [in]

Pointer to the error log packet the driver has allocated with IoAllocateErrorLogEntry and filled in by the caller.

Remarks

IoWriteErrorLogEntry frees the error log entry. Drivers must not call IoFreeErrorLogEntry on a log entry that they have already passed to IoWriteErrorLogEntry.

See also

IO_ERROR_LOG_PACKET

IoAllocateErrorLogEntry

IoFreeErrorLogEntry