blob: 8ce2f5792e60331e5bc014dbb455acfeeb4b225f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* @file
*
* https://gcc.gnu.org/onlinedocs/gcc/_005f_005fatomic-Builtins.html
*/
#ifndef SPINLOCK_H
#define SPINLOCK_H
#include <stdint.h>
void lock_spin(spinlock);
void lock_release(spinlock);
#endif
|