MCPcopy 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
4void Mutex::Init() {
5 KeInitializeMutex(&_mutex,0);
6}
7
8void Mutex::Lock() {
9 KeWaitForSingleObject(&_mutex, Executive, KernelMode, FALSE, nullptr);

Callers 1

DriverEntryFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected