HomeSort by: relevance | last modified time | path
    Searched defs:deadline (Results 1 - 11 of 11) sorted by relevancy

  /src/usr.bin/tip/
hunt.c 42 static jmp_buf deadline; variable in typeref:typename:jmp_buf
52 longjmp(deadline, 1);
73 if (setjmp(deadline) == 0) {
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_ring.c 420 ktime_t deadline = ktime_add_us(ktime_get(), 10000); local in function:amdgpu_ring_soft_recovery
427 ktime_to_ns(ktime_sub(deadline, ktime_get())) > 0)
  /src/tests/lib/libc/sys/
t_eventfd.c 101 struct timespec deadline; local in function:wait_state
107 ATF_REQUIRE(clock_gettime(CLOCK_MONOTONIC, &deadline) == 0);
108 deadline.tv_sec += 5;
112 &deadline);
t_futex_ops.c 1307 struct timespec deadline; local in function:do_futex_wait_timeout
1313 RL(clock_gettime(clock, &deadline));
1314 deadline.tv_sec += 2;
1319 ts = deadline;
1330 ATF_CHECK_MSG(ts.tv_sec >= deadline.tv_sec,
1331 "ts=%lld.%09ldsec deadline=%lld.%09ldsec",
1333 (long long)deadline.tv_sec, deadline.tv_nsec);
1334 ATF_CHECK_MSG((ts.tv_sec > deadline.tv_sec ||
1335 ts.tv_nsec >= deadline.tv_nsec)
    [all...]
  /src/sys/arch/mips/cavium/dev/
octeon_rnm.c 375 uint32_t deadline = mips3_cp0_count_read() + ncycles; local in function:octrnm_delay
379 while ((deadline - mips3_cp0_count_read()) < ncycles)
  /src/sys/external/bsd/drm2/linux/
linux_dma_fence.c 1046 int starttime = 0, now = 0, deadline = 0; /* XXXGCC */ local in function:dma_fence_default_wait
1074 /* Find out what our deadline is so we can handle spurious wakeup. */
1078 deadline = starttime + timeout;
1084 * If there's a timeout and we've passed the deadline,
1089 if (deadline <= now) {
1099 deadline - now);
1106 deadline - now);
1141 ret = MAX(1, deadline - now);
  /src/sys/dev/acpi/
acpi_ec.c 705 const unsigned deadline = getticks() + EC_CMD_TIMEOUT*hz; local in function:acpiec_wait_timeout
709 (delta = deadline - getticks()) < INT_MAX)
  /src/sys/kern/
sys_futex.c 923 * futex_wait(fw, deadline, clkid)
925 * fw must be a waiter on a futex's queue. Wait until deadline on
926 * the clock clkid, or forever if deadline is NULL, for a futex
932 futex_wait(struct futex_wait *fw, const struct timespec *deadline,
952 if (deadline) {
960 /* If we're past the deadline, ETIMEDOUT. */
961 if (timespeccmp(deadline, &ts, <=)) {
967 timespecsub(deadline, &ts, &ts);
1220 const struct timespec *deadline; local in function:futex_func_wait
1234 /* Determine a deadline on the specified clock. *
    [all...]
kern_event.c 1344 struct timespec deadline = ts; local in function:filt_timercompute
1357 /* If we're past the deadline, then the event will fire. */
1358 if (timespeccmp(&deadline, &ts, <=)) {
1364 timespecsub(&deadline, &ts, &ts);
  /src/sbin/ping6/
ping6.c 229 static double deadline = 0.0; /* max running time in seconds */ variable in typeref:typename:double
530 deadline = strtod(optarg, &e);
531 if (*e != '\0' || deadline <= 0)
532 errx(EXIT_FAILURE, "Bad/invalid deadline time: "
920 if (deadline > 0) {
921 last = timespec_to_sec(&now) + deadline;
2532 "\t[-p pattern] [-S sourceaddr] [-s packetsize] [-X deadline]\n"
  /src/sys/dev/pci/
xmm7360.c 572 struct hrtimer deadline; member in struct:xmm_net
1377 struct xmm_net *xn = container_of(t, struct xmm_net, deadline);
1414 if (!hrtimer_active(&xn->deadline)) {
1416 hrtimer_start(&xn->deadline, kt, HRTIMER_MODE_REL);
1485 hrtimer_init(&xn->deadline, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1486 xn->deadline.function = xmm7360_net_deadline_cb;

Completed in 22 milliseconds