diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2024-03-23 14:53:16 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-03-23 13:03:29 +0100 |
commit | ddc4f0144a709cebc4dae321b810e85547856b09 (patch) | |
tree | 47920ae1d6c5dfa3a691398848ef6a233f82b993 /proc | |
parent | 0fce0a75e76fd9965dc5a868ac84e7e3adb86b71 (diff) | |
download | hurd-ddc4f0144a709cebc4dae321b810e85547856b09.tar.gz hurd-ddc4f0144a709cebc4dae321b810e85547856b09.tar.bz2 hurd-ddc4f0144a709cebc4dae321b810e85547856b09.zip |
proc: Only try host_kernel_version () on i386
None of the new architectures are going to have it; that isn't specific
to x86_64.
Message-ID: <20240323115322.69075-4-bugaevc@gmail.com>
Diffstat (limited to 'proc')
-rw-r--r-- | proc/host.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proc/host.c b/proc/host.c index 823bda53..0197fecf 100644 --- a/proc/host.c +++ b/proc/host.c @@ -371,8 +371,8 @@ initialize_version_info (void) server_versions_nalloc = 10; err = host_get_kernel_version (mach_host_self (), kv); -#ifndef __x86_64__ - /* We don't support host_kernel_version for x86_64. */ +#ifdef __i386__ + /* We only supported host_kernel_version on i386. */ if (err == MIG_BAD_ID) { /* Delete after some time. */ |