Home
last modified time | relevance | path

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

/f-stack/app/micro_thread/
H A Dkqueue_proxy.cpp34 _maxfd = KqueueProxy::DEFAULT_MAX_FD_NUM; in KqueueProxy()
43 if (max_num > _maxfd) in InitKqueue()
45 _maxfd = max_num; in InitKqueue()
57 _kqrefs = new KqFdRef[_maxfd]; in InitKqueue()
64 _evtlist = (KqEvent*)calloc(_maxfd, sizeof(KqEvent)); in InitKqueue()
75 if ((int)rlim.rlim_max < _maxfd) in InitKqueue()
79 rlim.rlim_cur = _maxfd; in InitKqueue()
80 rlim.rlim_max = _maxfd; in InitKqueue()
437 nfd = ff_kevent(_kqfd, NULL, 0, _evtlist, _maxfd, &ts); in KqueueDispatch()
439 nfd = ff_kevent(_kqfd, NULL, 0, _evtlist, _maxfd, NULL); in KqueueDispatch()
H A Dkqueue_proxy.h229 int _maxfd; variable
253 return ((fd >= _maxfd) || (fd < 0)) ? (KqFdRef*)NULL : &_kqrefs[fd]; in KqFdRefGet()