Initial semaphores support

This commit is contained in:
2023-02-16 19:29:30 +01:00
parent 525cc116ee
commit ccaa28399a
3 changed files with 48 additions and 0 deletions

View File

@@ -16,6 +16,12 @@
/* Kernel services routines forward references */
XTAPI
VOID
KeInitializeSemaphore(IN PKSEMAPHORE Semaphore,
IN LONG Count,
IN LONG Limit);
XTAPI
VOID
KeInitializeSpinLock(IN PKSPIN_LOCK SpinLock);