Searched refs:_aio_doneq (Results 1 – 3 of 3) sorted by relevance
99 aio_req_t *_aio_doneq; /* double linked done queue list */ variable1986 if (_aio_doneq == NULL) { in _aio_enq_doneq()1987 _aio_doneq = reqp; in _aio_enq_doneq()1990 reqp->req_next = _aio_doneq; in _aio_enq_doneq()1991 reqp->req_prev = _aio_doneq->req_prev; in _aio_enq_doneq()1992 _aio_doneq->req_prev->req_next = reqp; in _aio_enq_doneq()1993 _aio_doneq->req_prev = reqp; in _aio_enq_doneq()2010 if (_aio_doneq == reqp) in _aio_req_remove()2011 _aio_doneq = reqp->req_next; in _aio_req_remove()2012 if (_aio_doneq == reqp) { in _aio_req_remove()[all …]
373 _aio_doneq = NULL; in postfork1_child_aio()
323 extern aio_req_t *_aio_doneq;