mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 19:15:46 +00:00
kernel/thread: Actually remove the definition of ExitCurrentThread()
This was intended to be removed in
0032bede5a
, but I guess I forgot to
actually save the file like a dingus.
This commit is contained in:
parent
43e9563fe0
commit
6e56eb5205
1 changed files with 0 additions and 6 deletions
|
@ -68,12 +68,6 @@ void Thread::Stop() {
|
|||
owner_process->FreeTLSSlot(tls_address);
|
||||
}
|
||||
|
||||
void ExitCurrentThread() {
|
||||
Thread* thread = GetCurrentThread();
|
||||
thread->Stop();
|
||||
Core::System::GetInstance().CurrentScheduler().RemoveThread(thread);
|
||||
}
|
||||
|
||||
void Thread::WakeAfterDelay(s64 nanoseconds) {
|
||||
// Don't schedule a wakeup if the thread wants to wait forever
|
||||
if (nanoseconds == -1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue