Home | History | Annotate | Download | only in dev

Lines Matching defs:tt_aio

65 	struct aiocb	tt_aio;
166 memset(&tt->tt_aio, 0, sizeof(tt->tt_aio));
167 tt->tt_aio.aio_fildes = sc->sc_fd;
168 tt->tt_aio.aio_buf = bp->b_data;
169 tt->tt_aio.aio_nbytes = bp->b_bcount;
170 tt->tt_aio.aio_offset = offset;
172 tt->tt_aio.aio_sigevent.sigev_notify = SIGEV_SIGNAL;
173 tt->tt_aio.aio_sigevent.sigev_signo = SIGIO;
174 tt->tt_aio.aio_sigevent.sigev_value.sival_ptr = tt;
192 error = thunk_aio_read(&tt->tt_aio);
194 error = thunk_aio_write(&tt->tt_aio);
216 error = thunk_aio_error(&tt->tt_aio);
222 thunk_aio_return(&tt->tt_aio) != -1) {