All checks were successful
Build documentation / build-and-deploy (push) Successful in 32s
10 lines
171 B
C
10 lines
171 B
C
#ifndef _KERNEL_SYS_SPIN_H
|
|
#define _KERNEL_SYS_SPIN_H
|
|
|
|
#if defined(__x86_64__)
|
|
extern void amd64_spin (void);
|
|
#define spin amd64_spin
|
|
#endif
|
|
|
|
#endif // _KERNEL_SYS_SPIN_H
|