libowfat/io/io_finishandshutdown.c
leitner a544abc39c switch io_fds from array to newly implemented (hopefully thread-safe) iarray
switch epoll from level triggering to edge triggering
2014-04-04 18:11:03 +00:00

7 lines
114 B
C

#include "io_internal.h"
void io_finishandshutdown(void) {
iarray_free(&io_fds);
array_reset(&io_pollfds);
}