mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-11 03:08:41 +00:00
17 lines
322 B
C
17 lines
322 B
C
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef TOS_PLATFORM_LINUX_THREADING_SPINLOCK_H
|
|
#define TOS_PLATFORM_LINUX_THREADING_SPINLOCK_H
|
|
|
|
#include "../../../stdlib/Types.h"
|
|
#include "Spinlock.h"
|
|
|
|
typedef volatile int32 spinlock32;
|
|
|
|
#endif |