Partager via


FsRtlCurrentOplock, fonction (ntifs.h)

Un système de fichiers ou un pilote de filtre appelle FsRtlCurrentOplock pour déterminer s’il existe des verrous opportunistes (oplocks) sur un fichier.

Syntaxe

BOOLEAN FsRtlCurrentOplock(
  [in] POPLOCK Oplock
);

Paramètres

[in] Oplock

Pointeur de verrou opportuniste opaque pour le fichier. Ce pointeur doit avoir été initialisé par un appel précédent à FsRtlInitializeOplock.

Valeur de retour

FsRtlCurrentOplock retourne TRUE s’il existe des verrous opportunistes (oplocks) en cours de détention. Sinon, elle retourne FALSE.

Remarques

FsRtlCurrentOplock retourne FAUX si aucun verrou opportuniste n’est actuellement conservé.

Pour plus d’informations sur les verrous opportunistes, consultez la documentation du Kit de développement logiciel (SDK) Microsoft Windows.

Les minifilters doivent appeler FltCurrentOplock au lieu de FsRtlCurrentOplock .

Exigences

Exigence Valeur
client minimum pris en charge La routine FsRtlCurrentOplock est disponible à partir de Windows Vista.
plateforme cible Universel
d’en-tête ntifs.h (include Ntifs.h)
bibliothèque NtosKrnl.lib
DLL NtosKrnl.exe
IRQL <= APC_LEVEL

Voir aussi

fltCurrentOplock

FsRtlInitializeOplock