共用方式為


FsRtlFastUnlockAllByKey 函式 (ntifs.h)

FsRtlFastUnlockAllByKey 例程會釋放指定進程取得的所有位元組範圍鎖定,以及檔案的指定索引鍵值。

語法

NTSTATUS FsRtlFastUnlockAllByKey(
  [in]           PFILE_LOCK   FileLock,
  [in]           PFILE_OBJECT FileObject,
  [in]           PEPROCESS    ProcessId,
  [in]           ULONG        Key,
  [in, optional] PVOID        Context
);

參數

[in] FileLock

檔案FILE_LOCK結構的指標。 這個結構必須由 先前呼叫 FsRtlAllocateFileLockFsRtlInitializeFileLock 初始化。

[in] FileObject

檔案物件的指標。

[in] ProcessId

進程的進程標識碼指標。

[in] Key

索引鍵值。

[in, optional] Context

完成 IRP 時要使用的選擇性內容指標。

傳回值

FsRtlFastUnlockAllByKey 會傳回STATUS_SUCCESS或錯誤狀態代碼,例如 STATUS_RANGE_NOT_LOCKED。

備註

釋放位元組範圍鎖定之後, FsRtlFastUnlockAllByKey 會完成任何目前已排入佇列的鎖定 IRP,現在可以完成。

規格需求

需求
目標平台 Universal
標頭 ntifs.h (包含 Ntifs.h)
程式庫 NtosKrnl.lib
Dll NtosKrnl.exe
IRQL <= APC_LEVEL
DDI 合規性規則 HwStorPortProhibitedDIS (storport)

另請參閱

FsRtlAllocateFileLock

FsRtlInitializeFileLock