move clkstart macro into clock.c, where clock code is now
authorBill Joy <root@ucbvax.Berkeley.EDU>
Mon, 1 Nov 1982 07:31:10 +0000 (23:31 -0800)
committerBill Joy <root@ucbvax.Berkeley.EDU>
Mon, 1 Nov 1982 07:31:10 +0000 (23:31 -0800)
SCCS-vsn: sys/vax/include/clock.h 4.8

usr/src/sys/vax/include/clock.h

index 6f2cf83..b204953 100644 (file)
@@ -1,4 +1,4 @@
-/*     clock.h 4.7     82/09/12        */
+/*     clock.h 4.8     82/10/31        */
 
 /*
  * VAX clock registers
 
 /*
  * VAX clock registers
 #define        LEAPYEAR(year)  ((year)%4==0)   /* good till time becomes negative */
 
 /*
 #define        LEAPYEAR(year)  ((year)%4==0)   /* good till time becomes negative */
 
 /*
- * Start a 60 HZ clock.
+ * Has the time-of-day clock wrapped around?
  */
  */
-#define        clkstart() {\
-       mtpr(NICR, -1000000/hz);        /* 10 milli-seconds */\
-       mtpr(ICCS, ICCS_RUN+ICCS_IE+ICCS_TRANS+ICCS_INT+ICCS_ERR);\
-}
 #define        clkwrap()       (((unsigned)mfpr(TODR) - TODRZERO)/100 > SECYR+SECDAY)
 
 /*
 #define        clkwrap()       (((unsigned)mfpr(TODR) - TODRZERO)/100 > SECYR+SECDAY)
 
 /*