diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2024-01-21 16:07:55 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-09-08 23:55:33 +0200 |
commit | 5d29fe3f8f7ddb0feb7b961c69fb3b1ed9fdc3f0 (patch) | |
tree | 1865195ae3d0de379112869eaa8f8c6c5da00420 /proc | |
parent | 56cf7f217d88e90b9dc89b0cc300dadb321f4c5a (diff) | |
download | hurd-5d29fe3f8f7ddb0feb7b961c69fb3b1ed9fdc3f0.tar.gz hurd-5d29fe3f8f7ddb0feb7b961c69fb3b1ed9fdc3f0.tar.bz2 hurd-5d29fe3f8f7ddb0feb7b961c69fb3b1ed9fdc3f0.zip |
x86_64: do not define mach_cpu_subtypes since we don't use it
Message-ID: <20240121210757.1900938-4-flaviocruz@gmail.com>
Diffstat (limited to 'proc')
-rw-r--r-- | proc/cpu-types.c | 2 | ||||
-rw-r--r-- | proc/host.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/proc/cpu-types.c b/proc/cpu-types.c index 41af0888..ffd54282 100644 --- a/proc/cpu-types.c +++ b/proc/cpu-types.c @@ -41,6 +41,7 @@ const char *const mach_cpu_types[] = #endif }; +#ifndef __x86_64__ const char *const mach_cpu_subtypes[][32] = { [CPU_TYPE_VAX] = @@ -170,3 +171,4 @@ const char *const mach_cpu_subtypes[][32] = [CPU_SUBTYPE_ALPHA_21064] = "ALPHA_21064", }, }; +#endif /* !__x86_64__ */ diff --git a/proc/host.c b/proc/host.c index e0aff20a..0ce1b766 100644 --- a/proc/host.c +++ b/proc/host.c @@ -340,7 +340,9 @@ void initialize_version_info (void) { extern const char *const mach_cpu_types[]; +#ifndef __x86_64__ extern const char *const mach_cpu_subtypes[][32]; +#endif kernel_version_t kv; char *p; struct host_basic_info info; |