| 202 | } |
| 203 | |
| 204 | int aeGetFileEvents(aeEventLoop *eventLoop, int fd) { |
| 205 | if (fd >= eventLoop->setsize) return 0; |
| 206 | aeFileEvent *fe = &eventLoop->events[fd]; |
| 207 | |
| 208 | return fe->mask; |
| 209 | } |
| 210 | |
| 211 | long long aeCreateTimeEvent(aeEventLoop *eventLoop, long long milliseconds, |
| 212 | aeTimeProc *proc, void *clientData, |
no outgoing calls
no test coverage detected