Home
last modified time | relevance | path

Searched refs:queuefd (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/dma/
H A Dspool.c128 int queuefd; in writequeuef() local
130 queuefd = open_locked(it->queuefn, O_CREAT|O_EXCL|O_RDWR, 0660); in writequeuef()
131 if (queuefd == -1) in writequeuef()
133 if (fchmod(queuefd, 0660) < 0) in writequeuef()
135 it->queuef = fdopen(queuefd, "w+"); in writequeuef()
361 int queuefd; in acquirespool() local
364 queuefd = open_locked(it->queuefn, O_RDWR|O_NONBLOCK); in acquirespool()
365 if (queuefd < 0) in acquirespool()
367 it->queuef = fdopen(queuefd, "r+"); in acquirespool()