1 # include "sendmail.h" 2 3 SCCSID(@(#)clock.c 3.2 08/08/82); 4 5 /* 6 ** TICK -- take a clock tick 7 ** 8 ** Someday this will have to do more complex event scheduling. 9 ** 10 ** Parameters: 11 ** none. 12 ** 13 ** Returns: 14 ** non-local through TickFrame. 15 ** 16 ** Side Effects: 17 ** none. 18 */ 19 20 tick() 21 { 22 # ifdef DEBUG 23 if (tTd(5, 1)) 24 printf("tick\n"); 25 # endif DEBUG 26 longjmp(TickFrame, 1); 27 } 28