ae.c event loop: API to resize the fd set size on the run.

This commit is contained in:
antirez
2013-06-28 16:39:49 +02:00
parent 0a0fd37e5b
commit 75dc48f04a
6 changed files with 57 additions and 1 deletions

View File

@ -94,6 +94,11 @@ static int aeApiCreate(aeEventLoop *eventLoop) {
return 0;
}
static int aeApiResize(aeEventLoop *eventLoop, int setsize) {
/* Nothing to resize here. */
return 0;
}
static void aeApiFree(aeEventLoop *eventLoop) {
aeApiState *state = eventLoop->apidata;