Implement ExAcquireRundownProtection() and ExReleaseRundownProtection() routines
Visas pārbaudes ir veiksmīgas
ci/woodpecker/push/build Pipeline was successful

Šī revīzija ir iekļauta:
2023-03-18 11:11:06 +01:00
vecāks 1f8026db2f
revīzija 2827bb400f
4 mainīti faili ar 136 papildinājumiem un 0 dzēšanām

28
sdk/xtdk/exfuncs.h Parasts fails
Parādīt failu

@@ -0,0 +1,28 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtdk/exfuncs.h
* DESCRIPTION: Kernel executive routines
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTDK_EXFUNCS_H
#define __XTDK_EXFUNCS_H
#include <xtbase.h>
#include <xttypes.h>
XTFASTCALL
BOOLEAN
ExAcquireRundownProtection(IN PEX_RUNDOWN_REFERENCE Descriptor);
XTFASTCALL
VOID
ExInitializeRundownProtection(IN PEX_RUNDOWN_REFERENCE Descriptor);
XTFASTCALL
VOID
ExReleaseRundownProtection(IN PEX_RUNDOWN_REFERENCE Descriptor);
#endif /* __XTDK_EXFUNCS_H */