From b7b5b9ee2a9d6cefe9b83589122cedb89c22279c Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 6 May 2017 15:41:43 +0200 Subject: Remove old (obsolete) Mutex class and replace all uses with std::mutex. --- src/mutex.h | 56 -------------------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 src/mutex.h (limited to 'src/mutex.h') diff --git a/src/mutex.h b/src/mutex.h deleted file mode 100644 index eafebba..0000000 --- a/src/mutex.h +++ /dev/null @@ -1,56 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set et sw=2 ts=2: */ -/*************************************************************************** - * mutex.h - * - * Thu Nov 12 10:51:32 CET 2009 - * Copyright 2009 Bent Bisballe Nyeng - * deva@aasimon.org - ****************************************************************************/ - -/* - * This file is part of DrumGizmo. - * - * DrumGizmo is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * DrumGizmo is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with DrumGizmo; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. - */ -#pragma once - -#include "platform.h" - -struct mutex_private_t; - -class Mutex -{ -public: - Mutex(); - ~Mutex(); - - bool try_lock(); - void lock(); - void unlock(); - -private: - struct mutex_private_t* prv; -}; - -class MutexAutolock -{ -public: - MutexAutolock(Mutex &mutex); - ~MutexAutolock(); - -private: - Mutex &mutex; -}; -- cgit v1.2.3