X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7da2926d0733ff0683f31aeea176ce71e127264f..769e2087753026c3b0f305eb1587f58b4fac65ea:/tools/cmake/test_prog/prog_thread_storage.c diff --git a/tools/cmake/test_prog/prog_thread_storage.c b/tools/cmake/test_prog/prog_thread_storage.c index edcab030ca..1ed7fac9b4 100644 --- a/tools/cmake/test_prog/prog_thread_storage.c +++ b/tools/cmake/test_prog/prog_thread_storage.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2011, 2013-2014. The SimGrid Team. +/* Copyright (c) 2010-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -6,15 +6,9 @@ #include -#ifdef _MSC_VER -__declspec(thread) -#else -__thread -#endif -int thread_specific_variable = 0; +__thread int thread_specific_variable = 0; int main(void) { - thread_specific_variable++; printf("%d\n", thread_specific_variable); return 0;