2014-05-20 20:03:45 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
2014-11-19 00:49:13 -08:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-20 20:03:45 -07: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-05-26 19:47:47 -07:00
|
|
|
* @return Result of operation, 0 on success, otherwise error code
|
2014-05-20 20:03:45 -07:00
|
|
|
*/
|
|
|
|
Result ReleaseMutex(Handle handle);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a mutex
|
|
|
|
* @param initial_locked Specifies if the mutex should be locked initially
|
2014-06-02 17:38:34 -07:00
|
|
|
* @param name Optional name of mutex
|
2014-05-26 19:47:47 -07:00
|
|
|
* @return Handle to newly created object
|
2014-05-20 20:03:45 -07:00
|
|
|
*/
|
2014-06-05 21:23:33 -07:00
|
|
|
Handle CreateMutex(bool initial_locked, const std::string& name="Unknown");
|
2014-05-20 20:03:45 -07:00
|
|
|
|
|
|
|
} // namespace
|