Searched refs:cbs (Results 1 - 2 of 2) sorted by relevance

/seL4-test-master/projects/musllibc/src/aio/
H A Dlio_listio.c11 struct aiocb *cbs[]; member in struct:lio_state
18 struct aiocb **cbs = st->cbs; local
22 if (!cbs[i]) continue;
23 err = aio_error(cbs[i]);
27 cbs[i] = 0;
36 if (aio_suspend((void *)cbs, cnt, 0))
70 int lio_listio(int mode, struct aiocb *restrict const *restrict cbs, int cnt, struct sigevent *restrict sev) argument
81 if (!(st = malloc(sizeof *st + cnt*sizeof *cbs))) {
87 memcpy(st->cbs, (voi
[all...]
H A Daio_suspend.c10 int aio_suspend(const struct aiocb *const cbs[], int cnt, const struct timespec *ts) argument
25 for (i=0; i<cnt; i++) if (cbs[i]) {
26 if (aio_error(cbs[i]) != EINPROGRESS) return 0;
28 cb = cbs[i];
42 if (cbs[i] && aio_error(cbs[i]) != EINPROGRESS)
61 if (cbs[i] && aio_error(cbs[i]) != EINPROGRESS)

Completed in 28 milliseconds