| /src/lib/libc/gen/ |
| sleep.c | 48 struct timespec rqt, rmt; local 50 rqt.tv_sec = seconds; 51 rqt.tv_nsec = 0; 53 nanosleep(&rqt, &rmt);
|
| /src/lib/librumpuser/ |
| rumpuser.c | 117 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.tv_sec - ts.tv_sec [all...] |
| /src/sys/compat/netbsd32/ |
| netbsd32_time.c | 365 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);
|
| netbsd32_compat_50.c | 447 struct timespec rqt, rmt; local 453 netbsd32_to_timespec50(&ts32, &rqt); 455 error = nanosleep1(l, CLOCK_MONOTONIC, 0, &rqt,
|
| /src/sys/kern/ |
| kern_time.c | 367 struct timespec rmt, rqt; local 370 error = copyin(SCARG(uap, rqtp), &rqt, sizeof(struct timespec)); 374 error = nanosleep1(l, CLOCK_MONOTONIC, 0, &rqt, 394 struct timespec rmt, rqt; local 397 error = copyin(SCARG(uap, rqtp), &rqt, sizeof(struct timespec)); 401 error = nanosleep1(l, SCARG(uap, clock_id), SCARG(uap, flags), &rqt, 415 nanosleep1(struct lwp *l, clockid_t clock_id, int flags, struct timespec *rqt, 421 if ((error = ts2timo(clock_id, flags, rqt, &timo, &rmtstart)) != 0) { 451 timespecsub(rqt, &rmtend, t); 457 if (timespeccmp(rqt, t, <) [all...] |
| /src/sys/compat/common/ |
| kern_time_50.c | 184 struct timespec rmt, rqt; local 191 timespec50_to_timespec(&rqt50, &rqt); 193 error = nanosleep1(l, CLOCK_MONOTONIC, 0, &rqt,
|
| /src/sys/dev/pci/ |
| if_mcx.c | 2388 * A Receive Queue Table (RQT) is the indirection table that maps packets to 2392 * which doesn't require an RQT. 2395 * queue or an RQT, and in the latter case, specifies the set of fields 2417 * pointing to either the first rx queue or the RQT containing all the rx 5466 mcx_create_rqt(struct mcx_softc *sc, int size, int *rqns, int *rqt) 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)) [all...] |