Kernel: Remove g_program_id

This has been obsoleted by the field in Process.
This commit is contained in:
Yuri Kunde Schlesner 2015-05-06 21:40:39 -03:00
parent 6d60acf0f1
commit a5eba2f984
6 changed files with 3 additions and 21 deletions

View file

@ -19,7 +19,6 @@ namespace Kernel {
unsigned int Object::next_object_id;
SharedPtr<Thread> g_main_thread;
HandleTable g_handle_table;
u64 g_program_id;
void WaitObject::AddWaitingThread(SharedPtr<Thread> thread) {
auto itr = std::find(waiting_threads.begin(), waiting_threads.end(), thread);
@ -141,7 +140,6 @@ void Init() {
Kernel::TimersInit();
Object::next_object_id = 0;
g_program_id = 0;
g_main_thread = nullptr;
}