All: Cleanup all files

Add newline to end of files and remove whitespace from end of lines
This commit is contained in:
2024-01-24 15:53:38 +02:00
parent 3441f63298
commit dfe5a2d665
226 changed files with 466 additions and 460 deletions
+3 -3
View File
@@ -101,7 +101,7 @@ namespace Kernel
if (m_active_threads.empty() || &current_thread() != m_idle_thread)
return;
if (save_current_thread())
return;
m_current_thread = m_active_threads.begin();
@@ -199,7 +199,7 @@ namespace Kernel
ASSERT(thread->has_process());
delete &thread->process();
remove_and_advance_current_thread();
delete thread;
@@ -247,7 +247,7 @@ namespace Kernel
Thread* thread = m_current_thread->thread;
if (thread->has_process())
thread->process().on_thread_exit(*thread);
remove_and_advance_current_thread();
delete thread;