Home
last modified time | relevance | path

Searched full:deadline (Results 1 – 25 of 54) sorted by relevance

123

/freebsd/sys/contrib/ck/include/
H A Dck_ec.h82 * value changes, and can override the deadline passed to futex_wait.
112 * deadline is either NULL, or a `const struct timespec *` that will
113 * be treated as an absolute deadline.
134 * computes a deadline `timeout` away from the current time. If
135 * timeout is NULL, computes a deadline in the infinite future. The
136 * resulting deadline is written to `new_deadline`. Returns 0 on
139 * `int ck_ec_wait(ec, mode, value, deadline)`: waits until the event
140 * counter's value differs from `value`, or, if `deadline` is
142 * deadline. Use a deadline with tv_sec = 0 for a non-blocking
146 * `int ck_ec_wait_pred(ec, mode, value, pred, data, deadline)`: waits
[all …]
/freebsd/sys/contrib/ck/src/
H A Dck_ec.c29 /* Once we've waited for >= 1 sec, go for the full deadline. */
47 const struct timespec *deadline) in ck_ec32_wait_slow() argument
50 NULL, NULL, deadline); in ck_ec32_wait_slow()
66 const struct timespec *deadline) in ck_ec64_wait_slow() argument
69 NULL, NULL, deadline); in ck_ec64_wait_slow()
120 * If deadline is ever reached, returns -1 (timeout).
132 struct timespec *deadline), in exponential_backoff() argument
133 const struct timespec *deadline) in exponential_backoff() argument
153 if (check_deadline(&now, ops, *deadline) == true) { in exponential_backoff()
167 partial_deadline = *deadline; in exponential_backoff()
[all …]
H A Dck_ec_timeutil.h134 * true if the current time is greater than or equal to the deadline,
139 const struct timespec deadline) in check_deadline() argument
148 return timespec_cmp(*now, deadline) >= 0; in check_deadline()
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Darena_structs_b.h41 /* Deadline randomness generator. */
44 * Deadline for current epoch. This is the sum of interval and per
47 * randomize the deadline to reduce the likelihood of arenas purging in
50 nstime_t deadline; member
/freebsd/usr.bin/tip/tip/
H A Dhunt.c37 static jmp_buf deadline; variable
47 longjmp(deadline, 1); in dead()
76 if (setjmp(deadline) == 0) { in hunt()
/freebsd/lib/libtacplus/
H A Dtaclib.c485 const struct timeval *deadline) in read_timed() argument
506 timersub(deadline, &tv, &tv); in read_timed()
543 struct timeval deadline; in recv_msg() local
548 gettimeofday(&deadline, NULL); in recv_msg()
549 deadline.tv_sec += h->servers[h->cur_server].timeout; in recv_msg()
552 if (read_timed(h, msg, HDRSIZE, &deadline) == -1) in recv_msg()
579 if (read_timed(h, msg->u.body, len, &deadline) == -1) in recv_msg()
615 struct timeval deadline; in send_msg() local
638 gettimeofday(&deadline, NULL); in send_msg()
639 deadline.tv_sec += h->servers[h->cur_server].timeout; in send_msg()
[all …]
/freebsd/sys/net/altq/
H A Daltq_hfsc.h88 u_int64_t d; /* deadline */
131 u_int64_t d; /* deadline */
236 u_int64_t cl_d; /* deadline */
260 struct runtime_sc cl_deadline; /* deadline curve */
H A Daltq_hfsc.c735 * find the class with the minimum deadline among in hfsc_dequeue()
912 /* update the deadline curve */ in init_ed()
917 * for concave, it is equal to the deadline curve. in init_ed()
1220 /* find the class with the minimum deadline among the eligible classes */
/freebsd/sys/dev/nvme/
H A Dnvme_qpair.c925 * an indefinite amount of time and have no deadline. in nvme_qpair_timeout()
927 if (tr->deadline == SBT_MAX) in nvme_qpair_timeout()
935 if (now <= tr->deadline) in nvme_qpair_timeout()
945 * deadline has passed. Poll the competions as a last-ditch in nvme_qpair_timeout()
964 * an indefinite amount of time and have no deadline. in nvme_qpair_timeout()
966 if (tr->deadline == SBT_MAX) in nvme_qpair_timeout()
977 if (now <= tr->deadline) in nvme_qpair_timeout()
1055 tr->deadline = getsbinuptime() + timeout * SBT_1S; in nvme_qpair_submit_tracker()
1062 tr->deadline = SBT_MAX; in nvme_qpair_submit_tracker()
1170 tr->deadline = SBT_MAX; in _nvme_qpair_submit_request()
[all …]
/freebsd/crypto/openssh/
H A Dssh-agent.c1065 time_t deadline = 0, now = monotime(); in reaper() local
1078 deadline = (deadline == 0) ? id->death : in reaper()
1079 MINIMUM(deadline, id->death); in reaper()
1081 if (deadline == 0 || deadline <= now) in reaper()
1084 return (deadline - now); in reaper()
2098 time_t deadline; in prepare_poll() local
2156 deadline = reaper(); in prepare_poll()
2158 deadline = (deadline == 0) ? parent_alive_interval : in prepare_poll()
2159 MINIMUM(deadline, parent_alive_interval); in prepare_poll()
2160 if (deadline != 0) in prepare_poll()
[all …]
H A Dchannels.h150 time_t notbefore; /* Pause IO until deadline (time_t) */
214 /* Inactivity timeout deadline in seconds (0 = no timeout) */
H A Dmisc.c2955 * Will remember the earliest deadline and return it for use in poll/ppoll.
2958 /* Initialise a poll/ppoll timeout with an indefinite deadline */
2970 /* Specify a poll/ppoll deadline of at most 'sec' seconds */
2980 /* Specify a poll/ppoll deadline of at most 'p' (timespec) */
2988 /* Specify a poll/ppoll deadline of at most 'ms' milliseconds */
2999 /* Specify a poll/ppoll deadline at wall clock monotime 'when' (timespec) */
3017 /* Specify a poll/ppoll deadline at wall clock monotime 'when' */
/freebsd/sys/contrib/dev/athk/
H A Ddfs_pri_detector.h33 * @deadline_ts: deadline when this sequence becomes invalid (first_ts + dur)
/freebsd/contrib/kyua/utils/process/
H A Dexceptions.hpp66 /// Denotes that a deadline was exceeded.
/freebsd/contrib/kyua/utils/signals/
H A Dtimer.hpp33 /// concurrently by using a deadline scheduler and leveraging the "single timer"
H A Dtimer.cpp89 /// Deadline scheduler for all user timers on top of the unique system timer.
204 // whose deadline lies in the past but that have not yet fired for in reprogram_system_timer()
/freebsd/contrib/jemalloc/src/
H A Darena.c531 * Generate a new deadline that is uniformly random within the next in arena_decay_deadline_init()
534 nstime_copy(&decay->deadline, &decay->epoch); in arena_decay_deadline_init()
535 nstime_add(&decay->deadline, &decay->interval); in arena_decay_deadline_init()
541 nstime_add(&decay->deadline, &jitter); in arena_decay_deadline_init()
547 return (nstime_compare(&decay->deadline, time) <= 0); in arena_decay_deadline_reached()
638 /* Set a new deadline. */ in arena_decay_epoch_advance_helper()
736 * generate a new deadline, with the expectation that time in arena_maybe_decay()
751 * If the deadline has been reached, advance to the current epoch and in arena_maybe_decay()
/freebsd/contrib/sendmail/contrib/
H A Dqtool.8109 Deliver by flag and deadline for DELIVERBY ESMTP extension.
/freebsd/crypto/krb5/src/windows/leash/htmlhelp/html/
H A DRenew_Tickets.htm74 <li> The "Renewable Until" deadline has not been reached. Show or hide
H A DTicket_Settings.htm155 needed until the "Renewable Until" deadline is reached (e.g., 6 days).
/freebsd/sys/contrib/device-tree/Bindings/connector/
H A Dusb-connector.yaml233 description: Allows PMIC charger loops which are slow(i.e. cannot meet the 15ms deadline) to
/freebsd/sys/dev/ufshci/
H A Dufshci_req_queue.c465 tr->deadline = SBT_MAX; in _ufshci_req_queue_submit_request()
H A Dufshci_private.h89 sbintime_t deadline; member
/freebsd/contrib/lib9p/pytest/
H A Dp9conn.py636 deadline = None
638 deadline = time.time() + self.timeout
651 if deadline and time.time() > deadline:
/freebsd/tools/tools/netrate/netsend/
H A Dnetsend.c113 printf("warning: wait_time missed deadline without spinning\n"); in wait_time()

123