yuzu/src/core/hle/kernel/mutex.h

28 lines
601 B
C
Raw Normal View History

2014-05-21 04:03:45 +01:00
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2014-05-21 04:03:45 +01: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
*/
ResultCode ReleaseMutex(Handle handle);
2014-05-21 04:03:45 +01:00
/**
* Creates a mutex
* @param initial_locked Specifies if the mutex should be locked initially
* @param name Optional name of mutex
2014-05-27 03:47:47 +01:00
* @return Handle to newly created object
2014-05-21 04:03:45 +01:00
*/
Handle CreateMutex(bool initial_locked, const std::string& name="Unknown");
2014-05-21 04:03:45 +01:00
} // namespace