summaryrefslogtreecommitdiff
path: root/cmake/eventfd_test.cpp
blob: 8abd9c3814d72da4d9a4a06d2fd89e0093ad553c (plain)
1
2
3
4
5
6
7
8
#include <sys/eventfd.h>

int main()
{
	int i = eventfd(0, EFD_NONBLOCK);
	return i > 0 ? 1 : 0;
}