summaryrefslogtreecommitdiffstats
path: root/src/poll.c
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-04-30 02:56:02 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-04-30 02:56:02 +0200
commit4f082c7df3998cdc2cdf9845a62d886d05257cb8 (patch)
treed1aba5a8ad41db7954ac41583be2eb09e76e5492 /src/poll.c
parent36f9d70182c4c2f2e617192ae34abd6c44549a78 (diff)
downloadfastd-4f082c7df3998cdc2cdf9845a62d886d05257cb8.tar
fastd-4f082c7df3998cdc2cdf9845a62d886d05257cb8.zip
Remove now unneeded FD_CLOEXEC flag config
Diffstat (limited to 'src/poll.c')
-rw-r--r--src/poll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/poll.c b/src/poll.c
index 4ccf7de..ce1a7f4 100644
--- a/src/poll.c
+++ b/src/poll.c
@@ -91,7 +91,7 @@ static inline int handshake_timeout(void) {
void fastd_poll_init(void) {
- ctx.epoll_fd = epoll_create1(EPOLL_CLOEXEC);
+ ctx.epoll_fd = epoll_create1(0);
if (ctx.epoll_fd < 0)
exit_errno("epoll_create1");