From 99a3b90b6349e54cc9c1fd63a09fc1abe51e02ac Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 9 Oct 2024 11:35:45 -0700 Subject: [PATCH] svc: add new info type --- nx/include/switch/kernel/svc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nx/include/switch/kernel/svc.h b/nx/include/switch/kernel/svc.h index 220fcf63..ddc44fd6 100644 --- a/nx/include/switch/kernel/svc.h +++ b/nx/include/switch/kernel/svc.h @@ -212,6 +212,8 @@ typedef enum { InfoType_IoRegionHint = 27, ///< [16.0.0+] Low bits of the physical address for a KIoRegion. InfoType_AliasRegionExtraSize = 28, ///< [18.0.0+] Extra size added to the reserved region. + InfoType_TransferMemoryHint = 34, ///< [19.0.0+] Low bits of the process address for a KTransferMemory. + InfoType_ThreadTickCountDeprecated = 0xF0000002, ///< [1.0.0-12.1.0] Number of ticks spent on thread. } InfoType;