130 lines
3.3 KiB
C
130 lines
3.3 KiB
C
|
/*
|
||
|
* This file is part of Luma3DS
|
||
|
* Copyright (C) 2016-2017 Aurora Wright, TuxSH
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that 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/>.
|
||
|
*
|
||
|
* Additional Terms 7.b and 7.c of GPLv3 apply to this file:
|
||
|
* * Requiring preservation of specified reasonable legal notices or
|
||
|
* author attributions in that material or in the Appropriate Legal
|
||
|
* Notices displayed by works containing it.
|
||
|
* * Prohibiting misrepresentation of the origin of that material,
|
||
|
* or requiring that modified versions of such material be marked in
|
||
|
* reasonable ways as different from the original version.
|
||
|
*/
|
||
|
|
||
|
#include <3ds.h>
|
||
|
#include "memory.h"
|
||
|
#include "services.h"
|
||
|
#include "fsreg.h"
|
||
|
#include "menu.h"
|
||
|
#include "errdisp.h"
|
||
|
#include "hbloader.h"
|
||
|
#include "utils.h"
|
||
|
#include "MyThread.h"
|
||
|
#include "kernel_extension_setup.h"
|
||
|
#include "menus/process_patches.h"
|
||
|
|
||
|
// this is called before main
|
||
|
bool isN3DS;
|
||
|
void __appInit()
|
||
|
{
|
||
|
srvSysInit();
|
||
|
fsregInit();
|
||
|
fsSysInit();
|
||
|
|
||
|
s64 dummy;
|
||
|
isN3DS = svcGetSystemInfo(&dummy, 0x10001, 0) == 0;
|
||
|
}
|
||
|
|
||
|
// this is called after main exits
|
||
|
void __appExit()
|
||
|
{
|
||
|
fsExit();
|
||
|
fsregExit();
|
||
|
srvSysExit();
|
||
|
}
|
||
|
|
||
|
|
||
|
Result __sync_init(void);
|
||
|
Result __sync_fini(void);
|
||
|
void __libc_init_array(void);
|
||
|
void __libc_fini_array(void);
|
||
|
|
||
|
void __ctru_exit()
|
||
|
{
|
||
|
__appExit();
|
||
|
__sync_fini();
|
||
|
__libc_fini_array();
|
||
|
svcSleepThread(-1LL); // kernel-loaded sysmodules except PXI are not supposed to terminate anyways
|
||
|
svcExitProcess();
|
||
|
}
|
||
|
|
||
|
|
||
|
void initSystem()
|
||
|
{
|
||
|
__libc_init_array();
|
||
|
|
||
|
HBLDR_3DSX_TID = HBLDR_DEFAULT_3DSX_TID;
|
||
|
installKernelExtension();
|
||
|
|
||
|
__sync_init();
|
||
|
__appInit();
|
||
|
}
|
||
|
|
||
|
bool terminationRequest = false;
|
||
|
Handle terminationRequestEvent;
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
Result res = 0;
|
||
|
Handle notificationHandle;
|
||
|
|
||
|
MyThread *menuThread = menuCreateThread(), *errDispThread = errDispCreateThread(), *hbldrThread = hbldrCreateThread();
|
||
|
|
||
|
if(R_FAILED(srvEnableNotification(¬ificationHandle)))
|
||
|
svcBreak(USERBREAK_ASSERT);
|
||
|
|
||
|
if(R_FAILED(svcCreateEvent(&terminationRequestEvent, RESET_STICKY)))
|
||
|
svcBreak(USERBREAK_ASSERT);
|
||
|
|
||
|
do
|
||
|
{
|
||
|
res = svcWaitSynchronization(notificationHandle, -1LL);
|
||
|
|
||
|
if(R_FAILED(res))
|
||
|
continue;
|
||
|
|
||
|
u32 notifId = 0;
|
||
|
|
||
|
if(R_FAILED(srvReceiveNotification(¬ifId)))
|
||
|
svcBreak(USERBREAK_ASSERT);
|
||
|
|
||
|
if(notifId == 0x100)
|
||
|
{
|
||
|
// Termination request
|
||
|
terminationRequest = true;
|
||
|
svcSignalEvent(terminationRequestEvent);
|
||
|
}
|
||
|
}
|
||
|
while(!terminationRequest);
|
||
|
|
||
|
MyThread_Join(menuThread, -1LL);
|
||
|
MyThread_Join(errDispThread, -1LL);
|
||
|
MyThread_Join(hbldrThread, -1LL);
|
||
|
|
||
|
svcCloseHandle(notificationHandle);
|
||
|
return 0;
|
||
|
}
|