11 lines
173 B
C
11 lines
173 B
C
#ifndef _KERNEL_SYNC_BIGLOCK_H
|
|
#define _KERNEL_SYNC_BIGLOCK_H
|
|
|
|
#include <libk/std.h>
|
|
|
|
void biglock_lock(void);
|
|
|
|
void biglock_unlock(void);
|
|
|
|
#endif // _KERNEL_SYNC_BIGLOCK_H
|