Lines Matching refs:kevent
34 // observe when the process exits. kevent can monitor a kqueue with a
72 // |child| has been reaped. Specifically, even if a kqueue, kevent, or other
85 struct kevent change = {0};
87 result = HANDLE_EINTR(kevent(kq, &change, 1, NULL, 0, NULL));
91 DPLOG(ERROR) << "kevent (setup " << child << ")";
115 // Keep track of the elapsed time to be able to restart kevent if it's
120 struct kevent event = {0};
123 result = kevent(kq, NULL, 0, &event, 1, &remaining_timespec);
133 DPLOG(ERROR) << "kevent (wait " << child << ")";
135 DLOG(ERROR) << "kevent (wait " << child << "): unexpected result "
145 DLOG(ERROR) << "kevent (wait " << child