Home
last modified time | relevance | path

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

/external/libevent/
Dkqueue.c69 struct kqop { struct
79 static void kqop_free(struct kqop *kqop); argument
115 struct kqop *kqueueop = NULL; in kq_init()
117 if (!(kqueueop = mm_calloc(1, sizeof(struct kqop)))) in kq_init()
203 struct kqop *kqop) in kq_build_changes_list() argument
211 if (n_changes >= kqop->changes_size - 1) { in kq_build_changes_list()
212 int newsize = kqop->changes_size * 2; in kq_build_changes_list()
215 newchanges = mm_realloc(kqop->changes, in kq_build_changes_list()
221 kqop->changes = newchanges; in kq_build_changes_list()
222 kqop->changes_size = newsize; in kq_build_changes_list()
[all …]
DChangeLog1252 …o Do not free the kqop file descriptor in other processes, also allow it to be 0; from Andrei Nigm…