fixed command line
[cdsspec-compiler.git] / benchmark / mcs-lock / mcs-lock.cc
diff --git a/benchmark/mcs-lock/mcs-lock.cc b/benchmark/mcs-lock/mcs-lock.cc
deleted file mode 100644 (file)
index 43435b4..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-#include <stdio.h>
-#include <threads.h>
-
-#include "mcs-lock.h"
-
-/* For data race instrumentation */
-#include "librace.h"
-
-struct mcs_mutex *mutex;
-static uint32_t shared;
-
-void threadA(void *arg)
-{
-       mcs_mutex::guard g(mutex);
-       //printf("store: %d\n", 17);
-       //store_32(&shared, 17);
-       shared = 17;
-       mutex->unlock(&g);
-       mutex->lock(&g);
-       //printf("load: %u\n", load_32(&shared));
-       //printf("load: %u\n", shared);
-}
-
-void threadB(void *arg)
-{
-       mcs_mutex::guard g(mutex);
-       //printf("load: %u\n", load_32(&shared));
-       //printf("load: %u\n", shared);
-       mutex->unlock(&g);
-       mutex->lock(&g);
-       //printf("store: %d\n", 17);
-       shared = 17;
-       //store_32(&shared, 17);
-}
-
-int user_main(int argc, char **argv)
-{
-       thrd_t A, B;
-
-       mutex = new mcs_mutex();
-
-       thrd_create(&A, &threadA, NULL);
-       thrd_create(&B, &threadB, NULL);
-       thrd_join(A);
-       thrd_join(B);
-       return 0;
-}