From cf92d2f0100cedce3a96722f2569b189cae374bf Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Mon, 12 Feb 2001 17:19:00 +0000 Subject: [PATCH] Since we're in "everybody is hosed anyway" add an layout identifier to struct kinfo_proc. All userland/kernel shared structs should contain *both* a size and a layout field. I will add the code to use the field later. --- sys/sys/user.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/sys/user.h b/sys/sys/user.h index 7dac7794cdd..174b32a681e 100644 --- a/sys/sys/user.h +++ b/sys/sys/user.h @@ -82,6 +82,7 @@ struct kinfo_proc { int ki_structsize; /* size of this structure */ + int ki_layout; /* reserved: layout identifier */ struct pargs *ki_args; /* address of command arguments */ struct proc *ki_paddr; /* address of proc */ struct user *ki_addr; /* kernel virtual addr of u-area */