remove unused benchmarks
[model-checker-benchmarks.git] / williams-queue / williams-queue.cc
diff --git a/williams-queue/williams-queue.cc b/williams-queue/williams-queue.cc
deleted file mode 100644 (file)
index a61dfdd..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-//#include <threads.h>
-#include <thread>
-
-#include "williams-queue.h"
-
-lock_free_queue<int> *queue;
-
-void threadA(void *arg)
-{
-}
-
-#define user_main main
-
-int user_main(int argc, char **argv)
-{
-       /*thrd_t A, B;
-
-       thrd_create(&A, &threadA, NULL);
-       thrd_join(A);*/
-       queue = new lock_free_queue<int>();
-       std::thread t(threadA, (void *)NULL);
-       t.join();
-
-       return 0;
-}