Replaced "__sync_synchronize" with "__sync"

This commit is contained in:
Alex
2023-02-18 04:13:49 +02:00
parent 0fb62e52d2
commit 419b5bee0d
6 changed files with 14 additions and 14 deletions

View File

@ -188,7 +188,7 @@ namespace Execute
InterpreterTargetPath = new String(Path); /* We store in a String because Path may get changed while outside ELFLoad(). */
InterpreterMemoryImage = bl.MemoryImage;
InterpreterNeededLibraries = bl.NeededLibraries;
__sync_synchronize();
__sync;
TCB *InterpreterIPCThread = TaskManager->CreateThread(TaskManager->GetCurrentProcess(), (IP)ELFInterpreterThreadWrapper);
InterpreterIPCThread->Rename("ELF Interpreter IPC Thread");
InterpreterIPCThread->SetPriority(TaskPriority::Low);