mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 18:37:56 -05:00
fixup!
This commit is contained in:
@ -137,8 +137,10 @@ void Init() {
|
||||
Kernel::ThreadingInit();
|
||||
Kernel::TimersInit();
|
||||
|
||||
Process::next_process_id = 0;
|
||||
Object::next_object_id = 0;
|
||||
// TODO(Subv): Start the process ids from 10 for now, as lower PIDs are
|
||||
// reserved for low-level services
|
||||
Process::next_process_id = 10;
|
||||
}
|
||||
|
||||
/// Shutdown the kernel
|
||||
|
@ -57,12 +57,6 @@ public:
|
||||
|
||||
static u32 next_process_id;
|
||||
|
||||
/*
|
||||
* Gets the process' id
|
||||
* @returns The process' id
|
||||
*/
|
||||
u32 GetProcessId() const { return process_id; }
|
||||
|
||||
/// Name of the process
|
||||
std::string name;
|
||||
/// Title ID corresponding to the process
|
||||
|
Reference in New Issue
Block a user