mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
14 lines
242 B
C
14 lines
242 B
C
#ifndef _LIBC_H
|
|
#include <libc.h>
|
|
#endif
|
|
|
|
// Temporary fix
|
|
|
|
#include <ke/spinlock.h>
|
|
|
|
typedef Spinlock_t Lock_t;
|
|
#define ExInitLock KeInitSpinlock
|
|
#define ExAcquireLock KeAcquireSpinlock
|
|
#define ExReleaseLock KeReleaseSpinlock
|
|
|