Removing the static initializer in ManagedStatic.cpp by using llvm_call_once to initi...
authorChris Bieneman <beanz@apple.com>
Thu, 30 Oct 2014 22:07:09 +0000 (22:07 +0000)
committerChris Bieneman <beanz@apple.com>
Thu, 30 Oct 2014 22:07:09 +0000 (22:07 +0000)
commit8744520b533617fbbd55ef12ea936961f5225cf5
treed61b404ffe74eb75daf1c83d257e03b17be5879e
parent76ebe3d35c5af5f9a0ed44deee53bbe7add06993
Removing the static initializer in ManagedStatic.cpp by using llvm_call_once to initialize the ManagedStatic mutex.

Summary:
This patch adds an llvm_call_once which is a wrapper around std::call_once on platforms where it is available and devoid of bugs. The patch also migrates the ManagedStatic mutex to be allocated using llvm_call_once.

These changes are philosophically equivalent to the changes added in r219638, which were reverted due to a hang on Win32 which was the result of a bug in the Windows implementation of std::call_once.

Reviewers: aaron.ballman, chapuni, chandlerc, rnk

Reviewed By: rnk

Subscribers: majnemer, llvm-commits

Differential Revision: http://reviews.llvm.org/D5922

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220932 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Support/Threading.h
lib/Support/CMakeLists.txt
lib/Support/ManagedStatic.cpp
lib/Support/Threading.cpp
lib/Support/Unix/Threading.inc [new file with mode: 0644]
lib/Support/Windows/Threading.inc [new file with mode: 0644]