1 //===-- mutex_posix.h -------------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 #ifndef GWP_ASAN_MUTEX_POSIX_H_
11 #define GWP_ASAN_MUTEX_POSIX_H_
18 pthread_mutex_t Mu
= PTHREAD_MUTEX_INITIALIZER
;
20 } // namespace gwp_asan
22 #endif // GWP_ASAN_MUTEX_POSIX_H_
23 #endif // defined(__unix__)