diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-04-06 01:20:40 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-04-07 00:45:29 +0200 |
commit | 0a03fedbb9ce7aac3b2ecdd50256160ba7e33b1c (patch) | |
tree | 6b1705ea794aa85bde1a8f5ebec105b2b2003b2c /utils | |
parent | 0d87f60c88c36598c009b7dc76269105e2714657 (diff) | |
download | hurd-0a03fedbb9ce7aac3b2ecdd50256160ba7e33b1c.tar.gz hurd-0a03fedbb9ce7aac3b2ecdd50256160ba7e33b1c.tar.bz2 hurd-0a03fedbb9ce7aac3b2ecdd50256160ba7e33b1c.zip |
Use default pager MiG stubs from Hurd instead of gnumach
Hurd code relies on gnumach default_pager.defs headers when making calls
using the default pager RPC. Those stubs were checked in back in the 90s
and are essentially unused because gnumach does not implement or use
that interface. Instead use the Hurd interface directly.
This is safe since the Hurd stubs are a super set of the gnumach stubs.
Later, we won't need to install the gnumach stubs anymore through glibc.
Message-Id: <ZC5WqPKfCCiE8D29@jupiter.tail36e24.ts.net>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/vminfo.c | 3 | ||||
-rw-r--r-- | utils/vmstat.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/utils/vminfo.c b/utils/vminfo.c index 2718591d..fcd6ca27 100644 --- a/utils/vminfo.c +++ b/utils/vminfo.c @@ -28,9 +28,10 @@ #include <mach.h> #include <mach/vm_statistics.h> -#include <mach/default_pager.h> #include <hurd.h> +#include "default_pager_U.h" + const char *argp_program_version = STANDARD_HURD_VERSION (vminfo); static const struct argp_option options[] = { diff --git a/utils/vmstat.c b/utils/vmstat.c index 684a5917..ff2e7be2 100644 --- a/utils/vmstat.c +++ b/utils/vmstat.c @@ -31,10 +31,11 @@ #include <mach/gnumach.h> #include <mach/vm_statistics.h> #include <mach/vm_cache_statistics.h> -#include <mach/default_pager.h> #include <hurd.h> #include <hurd/paths.h> +#include "default_pager_U.h" + const char *argp_program_version = STANDARD_HURD_VERSION (vmstat); static const struct argp_option options[] = { |