mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-12 07:49:17 +00:00
.github
.vscode
arch
core
exec
files
include
include_std
kshell
library
libstdc++
std
errno.cpp
mutex.cpp
typeinfo.cpp
bitmap.cpp
cargs.c
convert.cpp
crc32.c
cwalk.c
cwalk_path_style.cpp
dumper.cpp
md5.c
memop.c
printf.c
simd_memcpy.cpp
simd_memmove.cpp
simd_memset.cpp
simd_strlen.cpp
targp.c
network
profiling
storage
syscalls
tasking
tests
virtualization
.gdbinit
.gitignore
CREDITS.md
Doxyfile
ISSUES.md
LICENSE.md
LICENSES.md
Makefile
README.md
TODO.md
driver.h
dump.sh
kernel.cpp
kernel.h
kernel_config.cpp
kernel_thread.cpp
kernel_vfs.cpp
syscalls.h
82 lines
1.8 KiB
C++
82 lines
1.8 KiB
C++
/*
|
|
This file is part of Fennix Kernel.
|
|
|
|
Fennix Kernel is free software: you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation, either version 3 of
|
|
the License, or (at your option) any later version.
|
|
|
|
Fennix Kernel is distributed in the hope that 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 Fennix Kernel. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <mutex>
|
|
|
|
#include <algorithm>
|
|
#include <assert.h>
|
|
#include <cpu.hpp>
|
|
|
|
#include "../../kernel.h"
|
|
|
|
using namespace Tasking;
|
|
|
|
namespace std
|
|
{
|
|
void mutex::lock()
|
|
{
|
|
bool Result = this->Locked.exchange(true, std::memory_order_acquire);
|
|
__sync;
|
|
|
|
if (Result)
|
|
{
|
|
this->Waiting.push_back(thisThread);
|
|
thisThread->Block();
|
|
TaskManager->Yield();
|
|
return;
|
|
}
|
|
|
|
this->Holder = thisThread;
|
|
this->Waiting.erase(std::find(this->Waiting.begin(),
|
|
this->Waiting.end(),
|
|
thisThread));
|
|
}
|
|
|
|
bool mutex::try_lock()
|
|
{
|
|
bool Result = this->Locked.exchange(true, std::memory_order_acquire);
|
|
__sync;
|
|
|
|
if (!Result)
|
|
{
|
|
this->Holder = thisThread;
|
|
this->Waiting.erase(std::find(this->Waiting.begin(),
|
|
this->Waiting.end(),
|
|
thisThread));
|
|
}
|
|
return !Result;
|
|
}
|
|
|
|
void mutex::unlock()
|
|
{
|
|
__sync;
|
|
this->Locked.store(false, std::memory_order_release);
|
|
|
|
if (!this->Waiting.empty())
|
|
{
|
|
this->Holder = this->Waiting[0];
|
|
|
|
this->Holder = this->Waiting.front();
|
|
this->Waiting.erase(this->Waiting.begin());
|
|
this->Holder->Unblock();
|
|
TaskManager->Yield();
|
|
}
|
|
else
|
|
this->Holder = nullptr;
|
|
}
|
|
}
|