summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-06-29 07:07:00 +0000
committerdg <dg@FreeBSD.org>1995-06-29 07:07:00 +0000
commit3d799ae7f8ef311d5648a2ad8534fd7a2a662bbc (patch)
tree6e9b6a9e0312ecbafca82bb54017c79a601b435c /sys
parent840299d61d31ddc38cf15c1570037fcc18f7f897 (diff)
downloadFreeBSD-src-3d799ae7f8ef311d5648a2ad8534fd7a2a662bbc.zip
FreeBSD-src-3d799ae7f8ef311d5648a2ad8534fd7a2a662bbc.tar.gz
Killed "TIMEZONE" and "DST" options. They have been forced to 0 by config
for more than a year now. Moved the declaration of 'tz' into kern_time.c.
Diffstat (limited to 'sys')
-rw-r--r--sys/conf/param.c5
-rw-r--r--sys/kern/kern_time.c4
-rw-r--r--sys/kern/subr_param.c5
3 files changed, 7 insertions, 7 deletions
diff --git a/sys/conf/param.c b/sys/conf/param.c
index aef4374..35a3766 100644
--- a/sys/conf/param.c
+++ b/sys/conf/param.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)param.c 8.2 (Berkeley) 1/21/94
- * $Id: param.c,v 1.8 1995/02/20 19:42:19 guido Exp $
+ * $Id: param.c,v 1.9 1995/05/25 07:36:24 davidg Exp $
*/
#include <sys/param.h>
@@ -70,7 +70,7 @@
* the kernel; it should be modified there to suit local taste
* if necessary.
*
- * Compiled with -DHZ=xx -DTIMEZONE=x -DDST=x -DMAXUSERS=xx
+ * Compiled with -DMAXUSERS=xx
*/
#ifndef HZ
@@ -79,7 +79,6 @@
int hz = HZ;
int tick = 1000000 / HZ;
int tickadj = 30000 / (60 * HZ); /* can adjust 30ms in 60s */
-struct timezone tz = { TIMEZONE, DST };
#define NPROC (20 + 16 * MAXUSERS)
int maxproc = NPROC; /* maximum # of processes */
int maxprocperuid = NPROC-1; /* maximum # of processes per user */
diff --git a/sys/kern/kern_time.c b/sys/kern/kern_time.c
index 7828751..d7ac692 100644
--- a/sys/kern/kern_time.c
+++ b/sys/kern/kern_time.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)kern_time.c 8.1 (Berkeley) 6/10/93
- * $Id: kern_time.c,v 1.8 1995/05/30 08:05:47 rgrimes Exp $
+ * $Id: kern_time.c,v 1.9 1995/06/26 07:48:50 bde Exp $
*/
#include <sys/param.h>
@@ -44,6 +44,8 @@
#include <machine/cpu.h>
+struct timezone tz;
+
/*
* Time of day and interval timer support.
*
diff --git a/sys/kern/subr_param.c b/sys/kern/subr_param.c
index aef4374..35a3766 100644
--- a/sys/kern/subr_param.c
+++ b/sys/kern/subr_param.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)param.c 8.2 (Berkeley) 1/21/94
- * $Id: param.c,v 1.8 1995/02/20 19:42:19 guido Exp $
+ * $Id: param.c,v 1.9 1995/05/25 07:36:24 davidg Exp $
*/
#include <sys/param.h>
@@ -70,7 +70,7 @@
* the kernel; it should be modified there to suit local taste
* if necessary.
*
- * Compiled with -DHZ=xx -DTIMEZONE=x -DDST=x -DMAXUSERS=xx
+ * Compiled with -DMAXUSERS=xx
*/
#ifndef HZ
@@ -79,7 +79,6 @@
int hz = HZ;
int tick = 1000000 / HZ;
int tickadj = 30000 / (60 * HZ); /* can adjust 30ms in 60s */
-struct timezone tz = { TIMEZONE, DST };
#define NPROC (20 + 16 * MAXUSERS)
int maxproc = NPROC; /* maximum # of processes */
int maxprocperuid = NPROC-1; /* maximum # of processes per user */
OpenPOWER on IntegriCloud