Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move the cmake files in tools/cmake
[simgrid.git] / buildtools / Cmake / test_prog / prog_thread_storage.c
diff --git a/buildtools/Cmake/test_prog/prog_thread_storage.c b/buildtools/Cmake/test_prog/prog_thread_storage.c
deleted file mode 100644 (file)
index 732a000..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Copyright (c) 2010-2011. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#include <stdio.h>
-
-__thread int thread_specific_variable = 0;
-
-int main(void) {
-
-  thread_specific_variable++;
-  printf("%d\n", thread_specific_variable);
-  return 0;
-}