Convert RTC_OFFSET, DEVPAGER, SWAPPAGER and VNODEPAGER to be declared

by defopt.
This commit is contained in:
enami 1997-09-20 00:44:05 +00:00
parent e8733ec0da
commit 8a45521059
3 changed files with 14 additions and 3 deletions

View File

@ -1,13 +1,18 @@
# $NetBSD: files,v 1.140 1997/09/16 06:05:54 thorpej Exp $
# $NetBSD: files,v 1.141 1997/09/20 00:44:05 enami Exp $
# @(#)files.newconf 7.5 (Berkeley) 5/10/93
# options understood by the machine-independent part of the kernel
# (note, these are case-sensitive)
defopt KMEMSTATS
defopt RTC_OFFSET
defopt TCP_RECVSPACE
defopt TCP_SENDSPACE
defopt DEVPAGER
defopt SWAPPAGER
defopt VNODEPAGER
# generic attributes
define disk
define tape

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.c,v 1.21 1997/02/28 00:14:19 jonathan Exp $ */
/* $NetBSD: param.c,v 1.22 1997/09/20 00:44:06 enami Exp $ */
/*
* Copyright (c) 1980, 1986, 1989 Regents of the University of California.
@ -40,6 +40,8 @@
* @(#)param.c 7.20 (Berkeley) 6/27/91
*/
#include "opt_rtc_offset.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_pager.c,v 1.24 1997/01/03 18:03:39 mrg Exp $ */
/* $NetBSD: vm_pager.c,v 1.25 1997/09/20 00:44:59 enami Exp $ */
/*
* Copyright (c) 1991, 1993
@ -69,6 +69,10 @@
* for builtin pagers.
*/
#include "opt_devpager.h"
#include "opt_swappager.h"
#include "opt_vnodepager.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>