Home
last modified time | relevance | path

Searched refs:nexttm (Results 1 – 1 of 1) sorted by relevance

/minix3/minix/commands/cron/
H A Dtab.c38 struct tm prevtm, nexttm, tmptm; in tab_reschedule() local
50 nexttm= prevtm; in tab_reschedule()
51 nexttm.tm_min++; /* Minimal increment */ in tab_reschedule()
55 if (nexttm.tm_min > 59) in tab_reschedule()
57 nexttm.tm_min= 0; in tab_reschedule()
58 nexttm.tm_hour++; in tab_reschedule()
60 if (nexttm.tm_hour > 23) in tab_reschedule()
62 nexttm.tm_min= 0; in tab_reschedule()
63 nexttm.tm_hour= 0; in tab_reschedule()
64 nexttm.tm_mday++; in tab_reschedule()
[all …]