move clkstart macro into clock.c, where clock code is now
[unix-history] / 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)
 
 /*