Home | History | Annotate | Download | only in racoon

Lines Matching defs:tick

134 sched_schedule(sc, tick, func)
136 time_t tick;
147 sc->tick.tv_sec = tick;
148 sc->tick.tv_usec = 0;
150 timeradd(&now, &sc->tick, &sc->xtime);
211 timersub(&p->xtime, &p->tick, &created);
215 dst->tick = p->tick.tv_sec;
242 test(tick)
243 int *tick;
245 printf("execute %d\n", *tick);
246 racoon_free(tick);
252 int *tick;
270 tick = (int *)racoon_malloc(sizeof(*tick));
271 *tick = atoi(buf);
272 printf("new queue tick = %d\n", *tick);
273 sched_new(*tick, test, tick);