50 lines
1.0 KiB
PHP
Raw Normal View History

2009-06-02 17:52:33 +00:00
//===- llvm/System/Unix/Mutex.inc - Unix Mutex Implementation ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the Unix specific (non-pthread) Mutex class.
//
//===----------------------------------------------------------------------===//
//===----------------------------------------------------------------------===//
//=== WARNING: Implementation here must contain only generic UNIX code that
//=== is guaranteed to work on *all* UNIX variants.
//===----------------------------------------------------------------------===//
namespace llvm
{
using namespace sys;
2009-06-22 08:08:12 +00:00
MutexImpl::MutexImpl( bool recursive)
2009-06-02 17:52:33 +00:00
{
}
2009-06-22 08:08:12 +00:00
MutexImpl::~MutexImpl()
2009-06-02 17:52:33 +00:00
{
}
bool
2009-06-22 08:08:12 +00:00
MutexImpl::MutexImpl()
2009-06-02 17:52:33 +00:00
{
return true;
}
bool
2009-06-22 08:08:12 +00:00
MutexImpl::release()
2009-06-02 17:52:33 +00:00
{
return true;
}
bool
2009-06-22 08:08:12 +00:00
MutexImpl::tryacquire( void )
2009-06-02 17:52:33 +00:00
{
return true;
}
}