Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BeneficialCode/WinArk
/ Init
Method
Init
KernelLibrary/Mutex.cpp:4–6 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2
#include
"Mutex.h"
3
4
void Mutex::Init() {
5
KeInitializeMutex(&_mutex,0);
6
}
7
8
void Mutex::Lock() {
9
KeWaitForSingleObject(&_mutex, Executive, KernelMode, FALSE, nullptr);
Callers
1
DriverEntry
Function · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected