mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-18 17:14:28 -04:00
Stratosphere: Skeleton create process up through the ProcessCreation::CreateProcess() call
This commit is contained in:
parent
878d68f7e0
commit
6a51ce25b3
8 changed files with 75 additions and 5 deletions
|
@ -71,3 +71,12 @@ void LaunchQueue::clear() {
|
|||
g_launch_queue[i].tid = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
LaunchQueue::LaunchItem *LaunchQueue::get_item(u64 tid) {
|
||||
int idx;
|
||||
if ((idx = get_index(tid)) == LAUNCH_QUEUE_FULL) {
|
||||
return NULL;
|
||||
}
|
||||
return &g_launch_queue[idx];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue