Move platform-specific code for process loading/init for AMD64 to amd64/
All checks were successful
Build documentation / build-and-deploy (push) Successful in 49s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 49s
This commit is contained in:
9
kernel/sys/spin.h
Normal file
9
kernel/sys/spin.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user