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.
This commit is contained in:
David Greenman 1995-06-29 07:07:00 +00:00
parent 650bd71d67
commit ac7e6123a6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9369
3 changed files with 7 additions and 7 deletions

View File

@ -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 */

View File

@ -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.
*

View File

@ -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 */