Searched refs:timeout (Results 1 - 25 of 54) sorted by path

123

/seL4-refos-master/apps/nethack/src/nethack-3.4.3/include/
H A Dtimeout.h1 /* SCCS Id: @(#)timeout.h 3.4 1999/02/13 */
8 /* generic timeout function */
23 * in timeout.c. "One more level of indirection will fix everything."
33 /* used in timeout.c */
36 long timeout; /* when we time out */ member in struct:fe
40 genericptr_t arg; /* pointer to timeout argument */
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/src/
H A DMakefile327 spell.c steal.c steed.c teleport.c timeout.c topten.c track.c trap.c \
362 sp_lev.h spell.h system.h tcap.h timeout.h tosconf.h tradstdc.h \
384 steal.o steed.o teleport.o timeout.o topten.o track.o trap.o u_init.o \
567 ../include/skills.h ../include/onames.h ../include/timeout.h \
794 timeout.o: timeout.c $(HACK_H) ../include/lev.h
H A Dapply.c1594 fig_transform(arg, timeout)
1596 long timeout;
1611 silent = (timeout != monstermoves); /* happened while away */
H A Ddig.c1385 * timeout. Eventually the object rots away.
1392 rot_organic(arg, timeout)
1394 long timeout; /* unused */
1415 rot_corpse(arg, timeout)
1417 long timeout; /* unused */
1450 rot_organic(arg, timeout);
H A Ddo.c1572 /* Revive the corpse via a timeout. */
1575 revive_mon(arg, timeout)
1577 long timeout;
H A Dtimeout.c1 /* SCCS Id: @(#)timeout.c 3.4 2002/12/17 */
378 /* Attach an egg hatch timeout to the given egg. */
414 hatch_egg(arg, timeout)
416 long timeout;
434 silent = (timeout != monstermoves); /* hatched while away */
568 /* replace ordinary egg timeout with a short one */
596 /* Attach a fig_transform timeout to the given figurine. */
744 burn_object(arg, timeout)
746 long timeout;
756 /* timeout whil
1480 long timeout; local
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/sys/unix/
H A DMakefile.src327 spell.c steal.c steed.c teleport.c timeout.c topten.c track.c trap.c \
362 sp_lev.h spell.h system.h tcap.h timeout.h tosconf.h tradstdc.h \
384 steal.o steed.o teleport.o timeout.o topten.o track.o trap.o u_init.o \
567 ../include/skills.h ../include/onames.h ../include/timeout.h \
794 timeout.o: timeout.c $(HACK_H) ../include/lev.h
/seL4-refos-master/libs/libmuslc/include/scsi/
H A Dsg.h74 unsigned timeout; member in struct:sg_io_hdr
/seL4-refos-master/libs/libmuslc/src/network/
H A Dlookup.h24 unsigned timeout; member in struct:resolvconf
H A Drecvmmsg.c6 int recvmmsg(int fd, struct mmsghdr *msgvec, unsigned int vlen, unsigned int flags, struct timespec *timeout) argument
14 return syscall_cp(SYS_recvmmsg, fd, msgvec, vlen, flags, timeout);
H A Dres_msend.c35 int timeout, attempts, retry_interval, servfail_retry; local
52 timeout = 1000*conf->timeout;
107 retry_interval = timeout / attempts;
112 for (; t2-t0 < timeout; t2=mtime()) {
H A Dresolvconf.c16 conf->timeout = 5;
53 p = strstr(line, "timeout:");
57 if (z != p) conf->timeout = x > 60 ? 60 : x;
/seL4-refos-master/libs/libmuslc/src/select/
H A Dpoll.c7 int poll(struct pollfd *fds, nfds_t n, int timeout) argument
10 return syscall_cp(SYS_poll, fds, n, timeout);
12 return syscall_cp(SYS_ppoll, fds, n, timeout>=0 ?
13 &((struct timespec){ .tv_sec = timeout/1000,
14 .tv_nsec = timeout%1000*1000000 }) : 0, 0, _NSIG/8);
/seL4-refos-master/libs/libmuslc/src/signal/
H A Dsigtimedwait.c6 int sigtimedwait(const sigset_t *restrict mask, siginfo_t *restrict si, const struct timespec *restrict timeout) argument
10 si, timeout, _NSIG/8);
/seL4-refos-master/libs/libplatsupport/include/platsupport/
H A Dtqueue.h20 /* Multiplex absolute timeouts -> maps ids of a timeout to absolute timeouts and returns the
21 * next timeout due */
23 /* absolute time this timeout should occur */
25 /* period this timeout should reoccur (0 if not periodic) */
34 /* details of the timeout */
35 timeout_t timeout; member in struct:tqueue_node
36 /* is this timeout allocated? */
38 /* is this timeout in the callback queue? */
50 /* size of timeout array */
65 * @param id id to specifically allocate. Must be < size the timeout multiplexe
[all...]
/seL4-refos-master/libs/libplatsupport/plat_include/odroidc2/platsupport/plat/
H A Dmeson_timer.h99 void meson_set_timeout(meson_timer_t *timer, uint16_t timeout, bool periodic);
/seL4-refos-master/libs/libplatsupport/src/
H A Dlocal_time_manager.c15 * It is intended to be used to multiplex timeouts to a single timeout
67 ZF_LOGE("timeout update failed");
96 timeout_t timeout = {0}; local
106 timeout.abs_time = ns;
109 timeout.abs_time = curr_time + ns;
113 timeout.abs_time = start;
115 timeout.abs_time = curr_time + ns;
117 timeout.period = ns;
123 if (timeout.abs_time < curr_time) {
127 timeout
[all...]
H A Dtqueue.c27 #define TIMEOUT_CMP(t1, t2) (cmp(t1->timeout.abs_time, t2->timeout.abs_time))
99 int tqueue_register(tqueue_t *tq, unsigned int id, timeout_t *timeout) argument
117 tq->array[id].timeout = *timeout;
152 while (t != NULL && t->timeout.abs_time <= curr_time) {
154 t->timeout.callback(t->timeout.token);
157 /* check if it is active again, as callback may have deactivated the timeout */
160 if (t->timeout
[all...]
/seL4-refos-master/libs/libplatsupport/src/plat/bcm2837/
H A Dsystem_timer.c61 /* Can only set a timeout within the next 2^32 microseconds. */
76 uint32_t timeout = timeout_ticks & MASK(32); local
77 timer->regs->compare[SYSTEM_TIMER_MATCH] = timeout;
/seL4-refos-master/libs/libplatsupport/src/plat/odroidc2/
H A Dmeson_timer.c49 void meson_set_timeout(meson_timer_t *timer, uint16_t timeout, bool periodic) argument
57 timer->regs->timer_a = timeout;
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/include/
H A Dtimeout.h1 /* SCCS Id: @(#)timeout.h 3.4 1999/02/13 */
8 /* generic timeout function */
23 * in timeout.c. "One more level of indirection will fix everything."
33 /* used in timeout.c */
36 long timeout; /* when we time out */ member in struct:fe
40 genericptr_t arg; /* pointer to timeout argument */
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/src/
H A DMakefile327 spell.c steal.c steed.c teleport.c timeout.c topten.c track.c trap.c \
362 sp_lev.h spell.h system.h tcap.h timeout.h tosconf.h tradstdc.h \
384 steal.o steed.o teleport.o timeout.o topten.o track.o trap.o u_init.o \
567 ../include/skills.h ../include/onames.h ../include/timeout.h \
794 timeout.o: timeout.c $(HACK_H) ../include/lev.h
H A Dapply.c1594 fig_transform(arg, timeout)
1596 long timeout;
1611 silent = (timeout != monstermoves); /* happened while away */
H A Ddig.c1385 * timeout. Eventually the object rots away.
1392 rot_organic(arg, timeout)
1394 long timeout; /* unused */
1415 rot_corpse(arg, timeout)
1417 long timeout; /* unused */
1450 rot_organic(arg, timeout);
H A Ddo.c1572 /* Revive the corpse via a timeout. */
1575 revive_mon(arg, timeout)
1577 long timeout;

Completed in 121 milliseconds

123