X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0e9c0448c6566825b170b98ecff716b098bda10e..ba5e8b528ff29715f5a9008137e117a9fbcc24b0:/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 index 732a000445..0000000000 --- a/buildtools/Cmake/test_prog/prog_thread_storage.c +++ /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 - -__thread int thread_specific_variable = 0; - -int main(void) { - - thread_specific_variable++; - printf("%d\n", thread_specific_variable); - return 0; -}