PsFreeSiloContextSlot - NtDoc

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

NTSTATUS PsFreeSiloContextSlot(
  [in] ULONG ContextSlot
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntddk-psfreesilocontextslot)

Description

This routine frees the specified slot and makes it available in the system. It undoes the effects of the PsAllocSiloContextSlot routine.

Parameters

ContextSlot [in]

A slot allocated by the PsAllocSiloContextSlot routine.

[!WARNING] Setting this parameter to a slot that is still in use causes the system to execute bug check.

Return value

The following NT status codes are returned:

Return code Description
STATUS_INVALID_PARAMETER The slot is not allocated in the system. This is an error code.
STATUS_SUCCESS The operation completed successfully.

See also

PsAllocSiloContextSlot