/freebsd/sys/contrib/ck/include/ |
H A D | ck_ec.h | 82 * 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 D | ck_ec.c | 29 /* 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 D | ck_ec_timeutil.h | 134 * 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 D | arena_structs_b.h | 41 /* 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 D | hunt.c | 37 static jmp_buf deadline; variable 47 longjmp(deadline, 1); in dead() 76 if (setjmp(deadline) == 0) { in hunt()
|
/freebsd/lib/libtacplus/ |
H A D | taclib.c | 485 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 D | altq_hfsc.h | 88 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 D | altq_hfsc.c | 735 * 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 D | nvme_qpair.c | 925 * 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 D | ssh-agent.c | 1065 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 D | channels.h | 150 time_t notbefore; /* Pause IO until deadline (time_t) */ 214 /* Inactivity timeout deadline in seconds (0 = no timeout) */
|
H A D | misc.c | 2955 * 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 D | dfs_pri_detector.h | 33 * @deadline_ts: deadline when this sequence becomes invalid (first_ts + dur)
|
/freebsd/contrib/kyua/utils/process/ |
H A D | exceptions.hpp | 66 /// Denotes that a deadline was exceeded.
|
/freebsd/contrib/kyua/utils/signals/ |
H A D | timer.hpp | 33 /// concurrently by using a deadline scheduler and leveraging the "single timer"
|
H A D | timer.cpp | 89 /// 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 D | arena.c | 531 * 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 D | qtool.8 | 109 Deliver by flag and deadline for DELIVERBY ESMTP extension.
|
/freebsd/crypto/krb5/src/windows/leash/htmlhelp/html/ |
H A D | Renew_Tickets.htm | 74 <li> The "Renewable Until" deadline has not been reached. Show or hide
|
H A D | Ticket_Settings.htm | 155 needed until the "Renewable Until" deadline is reached (e.g., 6 days).
|
/freebsd/sys/contrib/device-tree/Bindings/connector/ |
H A D | usb-connector.yaml | 233 description: Allows PMIC charger loops which are slow(i.e. cannot meet the 15ms deadline) to
|
/freebsd/sys/dev/ufshci/ |
H A D | ufshci_req_queue.c | 465 tr->deadline = SBT_MAX; in _ufshci_req_queue_submit_request()
|
H A D | ufshci_private.h | 89 sbintime_t deadline; member
|
/freebsd/contrib/lib9p/pytest/ |
H A D | p9conn.py | 636 deadline = None 638 deadline = time.time() + self.timeout 651 if deadline and time.time() > deadline:
|
/freebsd/tools/tools/netrate/netsend/ |
H A D | netsend.c | 113 printf("warning: wait_time missed deadline without spinning\n"); in wait_time()
|