Date: Sat, 9 Dec 1995 18:34:32 -0800 (PST) From: Bruce Evans <bde> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/vm vm.h vm_param.h Message-ID: <199512100234.SAA17995@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
bde 95/12/09 18:34:31 Modified: sys/sys types.h sys/vm vm.h vm_param.h Log: Moved the declaration of boolean_t from <vm/vm_param.h> to <sys/types.h> (if KERNEL is defined). This allows removing bogus dependencies on vm stuff in several places (e.g., ddb) and stops <vm_param.h> from depending on <vm_param.h> Added declaration of boolean_t to <vm/vm.h> (if KERNEL is not defined). It never belonged in <vm/vm_param.h>. Unfortunately, it is required for some vm headers that are included by applications. Deleted declarations of TRUE and FALSE from <vm/vm_param.h>. They are defined in <sys/param.h> if KERNEL is defined and we'll soon find out if any applications depend on them being defined in a vm header. Revision Changes Path 1.7 +2 -1 src/sys/sys/types.h 1.9 +10 -1 src/sys/vm/vm.h 1.5 +1 -9 src/sys/vm/vm_param.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199512100234.SAA17995>