[ARM] MVE integer min and max
[llvm-complete.git] / lib / Support / Unix / Mutex.inc
blob2c982b38d6ffe15a121eb2e8cc082bf273dcc8a8
1 //===- llvm/Support/Unix/Mutex.inc - Unix Mutex Implementation ---*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the Unix specific (non-pthread) Mutex class.
11 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
14 //=== WARNING: Implementation here must contain only generic UNIX code that
15 //===          is guaranteed to work on *all* UNIX variants.
16 //===----------------------------------------------------------------------===//
18 namespace llvm
20 using namespace sys;
22 MutexImpl::MutexImpl( bool recursive)
26 MutexImpl::~MutexImpl()
30 bool
31 MutexImpl::release()
33   return true;
36 bool
37 MutexImpl::tryacquire( void )
39   return true;