Module Name: src Committed By: dsl Date: Wed Feb 19 20:40:40 UTC 2014
Modified Files: src/sys/sys: user.h Log Message: Userspace shouldn't (and doesn't seem to) need machine/pcb.h. Unfortunately the file is included by loads of stuff, mostly in src/external, so can't be killed outright. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/sys/sys/user.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/user.h diff -u src/sys/sys/user.h:1.18 src/sys/sys/user.h:1.19 --- src/sys/sys/user.h:1.18 Fri Jan 14 02:06:34 2011 +++ src/sys/sys/user.h Wed Feb 19 20:40:40 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: user.h,v 1.18 2011/01/14 02:06:34 rmind Exp $ */ +/* $NetBSD: user.h,v 1.19 2014/02/19 20:40:40 dsl Exp $ */ /* * Copyright (c) 1982, 1986, 1989, 1991, 1993 @@ -38,10 +38,4 @@ #error "This header has been obsoleted and will be removed." #endif -#include <machine/pcb.h> - -struct user { - struct pcb u_pcb; -}; - #endif /* !_SYS_USER_H_ */