]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
tevent: use libreplace headers instead of system headers
authorStefan Metzmacher <metze@samba.org>
Fri, 2 Jan 2009 11:53:05 +0000 (12:53 +0100)
committerStefan Metzmacher <metze@samba.org>
Fri, 2 Jan 2009 17:16:49 +0000 (18:16 +0100)
metze

lib/tevent/tevent_aio.c
lib/tevent/tevent_epoll.c
lib/tevent/tevent_signal.c
lib/tevent/tevent_timed.c

index 746e96060b3d95bd77f879e482108739d4c264b9..46a5d3d6fc8976919950bfcb8473f0af9c2c76f5 100644 (file)
   this is _very_ experimental code
 */
 
-#include "system/filesys.h"
 #include "replace.h"
+#include "system/filesys.h"
+#include "system/network.h"
+#include "system/select.h"
 #include "tevent.h"
 #include "tevent_internal.h"
 #include "tevent_util.h"
-#include <sys/epoll.h>
 #include <libaio.h>
 
 #define MAX_AIO_QUEUE_DEPTH    100
index 1ce666462cdf0f41d7459503dd0002b42475a209..ab07515f1066dd11815b866f3319a11df80d54ea 100644 (file)
 #include "replace.h"
 #include "system/filesys.h"
 #include "system/network.h"
+#include "system/select.h"
 #include "tevent.h"
 #include "tevent_internal.h"
 #include "tevent_util.h"
-#include <sys/epoll.h>
 
 struct epoll_event_context {
        /* a pointer back to the generic event_context */
index bb50480dd7f0cd4ca378e9b3d9c90de2f1d58481..fdd70706256ef2798c243626c75037ea6f7c68a8 100644 (file)
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#include <signal.h>
 #include "replace.h"
 #include "system/filesys.h"
-#include "system/select.h"
+#include "system/wait.h"
 #include "tevent.h"
 #include "tevent_internal.h"
 #include "tevent_util.h"
index ce3fc8eb0060187333f467d035635443f5ef675d..4ad457221e6f398b133720209432a74cd207a9b2 100644 (file)
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#include <sys/time.h>
-#include <time.h>
 #include "replace.h"
-#include "system/filesys.h"
-#include "system/select.h"
+#include "system/time.h"
 #include "tevent.h"
 #include "tevent_internal.h"
 #include "tevent_util.h"