ClickHouse/base/poco/Foundation/src/Mutex.cpp
2023-02-14 22:13:11 +00:00

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