2014-05-21 08:33:45 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
2014-11-19 14:19:13 +05:30
|
|
|
// Refer to the license.txt file included.
|
2014-05-21 08:33:45 +05:30
|
|
|
|
|
|
|
#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 08:50:01 +05:30
|
|
|
ResultCode ReleaseMutex(Handle handle);
|
2014-05-21 08:33:45 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a mutex
|
|
|
|
* @param initial_locked Specifies if the mutex should be locked initially
|
2014-06-03 06:08:34 +05:30
|
|
|
* @param name Optional name of mutex
|
2014-05-27 08:17:47 +05:30
|
|
|
* @return Handle to newly created object
|
2014-05-21 08:33:45 +05:30
|
|
|
*/
|
2014-06-06 09:53:33 +05:30
|
|
|
Handle CreateMutex(bool initial_locked, const std::string& name="Unknown");
|
2014-05-21 08:33:45 +05:30
|
|
|
|
2014-12-08 02:14:21 +05:30
|
|
|
/**
|
|
|
|
* Releases all the mutexes held by the specified thread
|
|
|
|
* @param thread Thread that is holding the mutexes
|
|
|
|
*/
|
|
|
|
void ReleaseThreadMutexes(Handle thread);
|
|
|
|
|
2014-05-21 08:33:45 +05:30
|
|
|
} // namespace
|