Remove quite obsolete pcb_cmap2.

This commit is contained in:
tsutsui 2008-12-31 11:11:05 +00:00
parent 99a3dabf8e
commit baffe80103
2 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: genassym.cf,v 1.27 2008/04/30 13:10:59 martin Exp $
# $NetBSD: genassym.cf,v 1.28 2008/12/31 11:11:05 tsutsui Exp $
#-
# Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -166,7 +166,6 @@ define PCB_FLAGS offsetof(struct pcb, pcb_flags)
define PCB_PS offsetof(struct pcb, pcb_ps)
define PCB_USP offsetof(struct pcb, pcb_usp)
define PCB_REGS offsetof(struct pcb, pcb_regs)
define PCB_CMAP2 offsetof(struct pcb, pcb_cmap2)
define PCB_ONFAULT offsetof(struct pcb, pcb_onfault)
define PCB_FPCTX offsetof(struct pcb, pcb_fpregs)
define SIZEOF_PCB sizeof(struct pcb)

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcb.h,v 1.7 2007/03/04 05:59:41 christos Exp $ */
/* $NetBSD: pcb.h,v 1.8 2008/12/31 11:11:05 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
@ -91,7 +91,6 @@ struct pcb
int __pcb_spare0;
int pcb_usp; /* user stack pointer (+8) */
int pcb_regs[12]; /* D2-D7, A2-A7 (+C) */
int pcb_cmap2; /* temporary copy PTE */
void * pcb_onfault; /* for copyin/out faults */
struct fpframe pcb_fpregs; /* 68881/2 context save area */
int pcb_exec[16]; /* exec structure for core dumps */