summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-12-13 11:12:56 (GMT)
committerAdam <Adam@anope.org>2012-12-13 11:12:56 (GMT)
commitc1077faa281c5635f85b892e605e23bd6c8fcc3b (patch)
tree213b5f87a19f182e1efd6110f03ff10d5b10ebf6 /cmake
parent76ba147c22944b67e8522cd2bb7b6e1bae498ced (diff)
downloadanope-c1077faa281c5635f85b892e605e23bd6c8fcc3b.zip
anope-c1077faa281c5635f85b892e605e23bd6c8fcc3b.tar.gz
anope-c1077faa281c5635f85b892e605e23bd6c8fcc3b.tar.bz2
Optimize much of the database code and serialize code.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/eventfd_test.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/cmake/eventfd_test.cpp b/cmake/eventfd_test.cpp
deleted file mode 100644
index ab45b65..0000000
--- a/cmake/eventfd_test.cpp
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <sys/eventfd.h>
-
-int main()
-{
- int i = eventfd(0, EFD_NONBLOCK);
- return i >= 0 ? 1 : 0;
-}
-