dynamic alloc kernel version
[unix-history] / usr / src / sys / sys / callout.h
index 8f725d6..8ac103b 100644 (file)
@@ -1,4 +1,4 @@
-/*     callout.h       3.2     %G%     */
+/*     callout.h       4.4     81/02/27        */
 
 /*
  * The callout structure is for
 
 /*
  * The callout structure is for
  * delays on typewriters.
  */
 
  * delays on typewriters.
  */
 
-struct callo
+struct callout
 {
        int     c_time;         /* incremental time */
        caddr_t c_arg;          /* argument to routine */
        int     (*c_func)();    /* routine */
 };
 {
        int     c_time;         /* incremental time */
        caddr_t c_arg;          /* argument to routine */
        int     (*c_func)();    /* routine */
 };
-struct callo   callout[NCALL];
+#ifdef KERNEL
+extern struct callout *callout;
+extern int ncallout;
+#endif