2014-05-21 07:03:45 +04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 08:38:14 +03:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 11:49:13 +03:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-21 07:03:45 +04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Releases a mutex
|
|
|
|
* @param handle Handle to mutex to release
|
|
|
|
*/
|
2014-10-23 07:20:01 +04:00
|
|
|
ResultCode ReleaseMutex(Handle handle);
|
2014-05-21 07:03:45 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a mutex
|
|
|
|
* @param initial_locked Specifies if the mutex should be locked initially
|
2014-06-03 04:38:34 +04:00
|
|
|
* @param name Optional name of mutex
|
2014-05-27 06:47:47 +04:00
|
|
|
* @return Handle to newly created object
|
2014-05-21 07:03:45 +04:00
|
|
|
*/
|
2014-06-06 08:23:33 +04:00
|
|
|
Handle CreateMutex(bool initial_locked, const std::string& name="Unknown");
|
2014-05-21 07:03:45 +04:00
|
|
|
|
2014-12-07 23:44:21 +03:00
|
|
|
/**
|
|
|
|
* Releases all the mutexes held by the specified thread
|
|
|
|
* @param thread Thread that is holding the mutexes
|
|
|
|
*/
|
2015-01-21 02:33:23 +03:00
|
|
|
void ReleaseThreadMutexes(Thread* thread);
|
2014-12-07 23:44:21 +03:00
|
|
|
|
2014-05-21 07:03:45 +04:00
|
|
|
} // namespace
|