blob: 6863512719ce39745549e0241db396fe7ef06357 [file] [log] [blame]
/* -*- Mode: C; tab-width: 8; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
#include "util.h"
int main(void) {
int fd;
fd = epoll_create1(0);
atomic_printf("New epoll file descriptor: %d\n", fd);
if (fd >= 0) {
atomic_puts("EXIT-SUCCESS");
}
close(fd);
return 0;
}