Searched refs:rqt (Results 1 - 7 of 7) sorted by relevance

/netbsd-current/lib/libc/gen/
H A Dsleep.c48 struct timespec rqt, rmt; local
50 rqt.tv_sec = seconds;
51 rqt.tv_nsec = 0;
53 nanosleep(&rqt, &rmt);
/netbsd-current/lib/librumpuser/
H A Drumpuser.c117 struct timespec rqt, rmt; local
124 rqt.tv_sec = sec;
126 rqt.tv_nsec = nsec;
131 rv = nanosleep(&rqt, &rmt);
132 rqt = rmt;
142 &rqt, NULL);
148 if (ts.tv_sec == rqt.tv_sec ?
149 ts.tv_nsec > rqt.tv_nsec : ts.tv_sec > rqt.tv_sec) {
152 tsr.tv_sec = rqt
[all...]
/netbsd-current/sys/compat/netbsd32/
H A Dnetbsd32_time.c365 struct timespec rqt, rmt; local
371 netbsd32_to_timespec(&ts32, &rqt);
373 error = nanosleep1(l, CLOCK_MONOTONIC, 0, &rqt,
393 struct timespec rqt, rmt; local
399 netbsd32_to_timespec(&ts32, &rqt);
402 &rqt, SCARG_P32(uap, rmtp) ? &rmt : NULL);
H A Dnetbsd32_compat_50.c447 struct timespec rqt, rmt; local
453 netbsd32_to_timespec50(&ts32, &rqt);
455 error = nanosleep1(l, CLOCK_MONOTONIC, 0, &rqt,
/netbsd-current/sys/kern/
H A Dkern_time.c354 struct timespec rmt, rqt; local
357 error = copyin(SCARG(uap, rqtp), &rqt, sizeof(struct timespec));
361 error = nanosleep1(l, CLOCK_MONOTONIC, 0, &rqt,
381 struct timespec rmt, rqt; local
384 error = copyin(SCARG(uap, rqtp), &rqt, sizeof(struct timespec));
388 error = nanosleep1(l, SCARG(uap, clock_id), SCARG(uap, flags), &rqt,
402 nanosleep1(struct lwp *l, clockid_t clock_id, int flags, struct timespec *rqt, argument
408 if ((error = ts2timo(clock_id, flags, rqt, &timo, &rmtstart)) != 0) {
438 timespecsub(rqt, &rmtend, t);
444 if (timespeccmp(rqt,
[all...]
/netbsd-current/sys/compat/common/
H A Dkern_time_50.c184 struct timespec rmt, rqt; local
191 timespec50_to_timespec(&rqt50, &rqt);
193 error = nanosleep1(l, CLOCK_MONOTONIC, 0, &rqt,
/netbsd-current/sys/dev/pci/
H A Dif_mcx.c5466 mcx_create_rqt(struct mcx_softc *sc, int size, int *rqns, int *rqt) argument
5490 printf("%s: unable to allocate create rqt mailbox\n",
5499 /* rqt list follows the rqt context */
5509 printf("%s: create rqt timeout\n", DEVNAME(sc));
5513 printf("%s: create rqt command corrupt\n", DEVNAME(sc));
5519 printf("%s: create rqt failed (%x, %x)\n", DEVNAME(sc),
5525 *rqt = mcx_get_id(out->cmd_rqtn);
5533 mcx_destroy_rqt(struct mcx_softc *sc, int rqt) argument
5548 in->cmd_rqtn = htobe32(rqt);
[all...]

Completed in 206 milliseconds