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:
parent
650bd71d67
commit
ac7e6123a6
@ -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 */
|
||||
|
@ -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.
|
||||
*
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user