| 50 | } |
| 51 | |
| 52 | static int aeApiResize(aeEventLoop *eventLoop, int setsize) { |
| 53 | /* Just ensure we have enough room in the fd_set type. */ |
| 54 | if (setsize >= FD_SETSIZE) return -1; |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | static void aeApiFree(aeEventLoop *eventLoop) { |
| 59 | zfree(eventLoop->apidata); |