From 6661339b82bfe60465f6bc97ea0963847f1958b4 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Sat, 20 Nov 2004 02:30:02 +0000 Subject: [PATCH] gcore(1) apparently still cares about a.out core dumps, so it still needs to know that a 1-page U area is part of the dump format. Reviewed by: arch@ --- usr.bin/gcore/aoutcore.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.bin/gcore/aoutcore.c b/usr.bin/gcore/aoutcore.c index fac3fb9b91eb..28d764761cf4 100644 --- a/usr.bin/gcore/aoutcore.c +++ b/usr.bin/gcore/aoutcore.c @@ -82,6 +82,8 @@ __FBSDID("$FreeBSD$"); #include "extern.h" +#define UAREA_PAGES 1 + static void datadump(int, int, struct kinfo_proc *, u_long, int); static void userdump(int, struct kinfo_proc *, u_long, int);