2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-04-18 00:41:57 +01:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
|
|
|
|
#define LAUNCH_QUEUE_SIZE (10)
|
|
|
|
#define LAUNCH_QUEUE_FULL (-1)
|
|
|
|
|
|
|
|
#define LAUNCH_QUEUE_ARG_SIZE_MAX (0x8000)
|
|
|
|
|
2018-04-19 06:00:10 +01:00
|
|
|
class LaunchQueue {
|
|
|
|
public:
|
|
|
|
struct LaunchItem {
|
|
|
|
u64 tid;
|
|
|
|
u64 arg_size;
|
|
|
|
char args[LAUNCH_QUEUE_ARG_SIZE_MAX];
|
|
|
|
};
|
|
|
|
|
2018-10-30 05:33:56 +00:00
|
|
|
static LaunchQueue::LaunchItem *GetItem(u64 tid);
|
2018-04-22 02:52:49 +01:00
|
|
|
|
2018-10-30 05:33:56 +00:00
|
|
|
static Result Add(u64 tid, const char *args, u64 arg_size);
|
|
|
|
static Result AddItem(const LaunchItem *item);
|
|
|
|
static Result AddCopy(u64 tid_base, u64 new_tid);
|
|
|
|
static int GetIndex(u64 tid);
|
|
|
|
static int GetFreeIndex(u64 tid);
|
|
|
|
static bool Contains(u64 tid);
|
|
|
|
static void Clear();
|
2018-04-19 06:00:10 +01:00
|
|
|
};
|