diff options
author | H. Peter Anvin <hpa@zytor.com> | 2019-02-04 12:16:57 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2019-02-04 12:16:57 -0800 |
commit | 35badfce1f4855a32d089e1a9d8c098e3ef343c7 (patch) | |
tree | b114358b6bac8eb97d7b3bf395e7eaeb7a1de1e5 /core/include | |
parent | 621770d33e6da95556ccfc4f08fd16edb8300c63 (diff) | |
download | syslinux-35badfce1f4855a32d089e1a9d8c098e3ef343c7.tar.gz syslinux-35badfce1f4855a32d089e1a9d8c098e3ef343c7.tar.xz syslinux-35badfce1f4855a32d089e1a9d8c098e3ef343c7.zip |
Reorganize and clean up a bunch of the x86 code
We were doing a bunch of i386-specific things even on x86-64. Fix
this, and merge x86 definitions where possible.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/thread.h b/core/include/thread.h index 8ec4a267..72ebba30 100644 --- a/core/include/thread.h +++ b/core/include/thread.h @@ -6,7 +6,7 @@ #include <limits.h> #include <stdbool.h> #include <timer.h> -#include <sys/cpu.h> +#include <x86/cpu.h> /* The idle thread runs at this priority */ #define IDLE_THREAD_PRIORITY INT_MAX |