2020-04-17 02:55:47 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2020-04-17 02:55:47 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
|
|
|
namespace ams::os {
|
|
|
|
|
|
|
|
void InitializeSdkMutex(SdkMutexType *mutex) {
|
2021-09-29 21:56:53 +00:00
|
|
|
/* Initialize the critical section. */
|
2020-04-17 02:55:47 +00:00
|
|
|
GetReference(mutex->_storage).Initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsSdkMutexLockedByCurrentThread(const SdkMutexType *mutex) {
|
2021-09-29 21:56:53 +00:00
|
|
|
/* Check whether the critical section is held. */
|
2020-04-17 02:55:47 +00:00
|
|
|
return GetReference(mutex->_storage).IsLockedByCurrentThread();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LockSdkMutex(SdkMutexType *mutex) {
|
2021-09-29 21:56:53 +00:00
|
|
|
/* Check pre-conditions. */
|
2020-04-17 02:55:47 +00:00
|
|
|
AMS_ABORT_UNLESS(!IsSdkMutexLockedByCurrentThread(mutex));
|
2021-09-29 21:56:53 +00:00
|
|
|
|
|
|
|
/* Enter the critical section. */
|
2020-04-17 02:55:47 +00:00
|
|
|
return GetReference(mutex->_storage).Enter();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TryLockSdkMutex(SdkMutexType *mutex) {
|
2021-09-29 21:56:53 +00:00
|
|
|
/* Check pre-conditions. */
|
2020-04-17 02:55:47 +00:00
|
|
|
AMS_ABORT_UNLESS(!IsSdkMutexLockedByCurrentThread(mutex));
|
2021-09-29 21:56:53 +00:00
|
|
|
|
|
|
|
/* Try to enter the critical section. */
|
2020-04-17 02:55:47 +00:00
|
|
|
return GetReference(mutex->_storage).TryEnter();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnlockSdkMutex(SdkMutexType *mutex) {
|
2021-09-29 21:56:53 +00:00
|
|
|
/* Check pre-conditions. */
|
2020-04-17 02:55:47 +00:00
|
|
|
AMS_ABORT_UNLESS(IsSdkMutexLockedByCurrentThread(mutex));
|
2021-09-29 21:56:53 +00:00
|
|
|
|
|
|
|
/* Leave the critical section. */
|
2020-04-17 02:55:47 +00:00
|
|
|
return GetReference(mutex->_storage).Leave();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|