mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
45 lines
421 B
C++
45 lines
421 B
C++
|
//
|
||
|
// Mutex.cpp
|
||
|
//
|
||
|
// Library: Foundation
|
||
|
// Package: Threading
|
||
|
// Module: Mutex
|
||
|
//
|
||
|
// Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "Poco/Mutex.h"
|
||
|
|
||
|
|
||
|
#include "Mutex_POSIX.cpp"
|
||
|
|
||
|
|
||
|
namespace Poco {
|
||
|
|
||
|
|
||
|
Mutex::Mutex()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
Mutex::~Mutex()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
FastMutex::FastMutex()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
FastMutex::~FastMutex()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
} // namespace Poco
|