diff options
author | root <root> | 2009-07-19 04:11:27 +0000 |
---|---|---|
committer | root <root> | 2009-07-19 04:11:27 +0000 |
commit | 08f0ee3c6c197a7f4dc506cdc8e700a6536ee616 (patch) | |
tree | 3ac27a62a0c0dc72110af5df1a0b5fdf727b9fc8 /ev_epoll.c | |
parent | 44e7261c51583f351206cd5dbd02655ea5f4797d (diff) |
*** empty log message ***
Diffstat (limited to 'ev_epoll.c')
-rw-r--r-- | ev_epoll.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* * libev epoll fd activity backend * - * Copyright (c) 2007,2008 Marc Alexander Lehmann <libev@schmorp.de> + * Copyright (c) 2007,2008,2009 Marc Alexander Lehmann <libev@schmorp.de> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modifica- @@ -181,7 +181,12 @@ epoll_poll (EV_P_ ev_tstamp timeout) int inline_size epoll_init (EV_P_ int flags) { - backend_fd = epoll_create (256); +#ifdef EPOLL_CLOEXEC + backend_fd = epoll_create1 (EPOLL_CLOEXEC); + + if (backend_fd <= 0) +#endif + backend_fd = epoll_create (256); if (backend_fd < 0) return 0; |