mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-13 22:54:24 -04:00
ams: support building unit test programs on windows/linux/macos
This commit is contained in:
parent
9a38be201a
commit
64a97576d0
756 changed files with 33359 additions and 9372 deletions
|
@ -50,19 +50,19 @@ namespace ams::sprofile::srv {
|
|||
|
||||
using ServerManager = sf::hipc::ServerManager<PortCountMax, ServerManagerOptions, SessionCountMax>;
|
||||
|
||||
constinit util::TypedStorage<ProfileManager> g_profile_manager;
|
||||
constinit util::TypedStorage<ProfileManager> g_profile_manager = {};
|
||||
|
||||
constinit util::TypedStorage<sf::UnmanagedServiceObject<ISprofileServiceForBgAgent, ServiceForBgAgent>> g_bg_service_object;
|
||||
constinit util::TypedStorage<sf::UnmanagedServiceObject<ISprofileServiceForSystemProcess, ServiceForSystemProcess>> g_sp_service_object;
|
||||
constinit util::TypedStorage<sf::UnmanagedServiceObject<ISprofileServiceForBgAgent, ServiceForBgAgent>> g_bg_service_object = {};
|
||||
constinit util::TypedStorage<sf::UnmanagedServiceObject<ISprofileServiceForSystemProcess, ServiceForSystemProcess>> g_sp_service_object = {};
|
||||
|
||||
constinit util::TypedStorage<ServerManager> g_server_manager;
|
||||
constinit util::TypedStorage<ServerManager> g_server_manager = {};
|
||||
|
||||
alignas(os::ThreadStackAlignment) constinit u8 g_ipc_thread_stack[0x3000];
|
||||
constinit u8 g_heap[16_KB];
|
||||
|
||||
constinit os::ThreadType g_ipc_thread;
|
||||
constinit os::ThreadType g_ipc_thread = {};
|
||||
|
||||
constinit lmem::HeapHandle g_heap_handle;
|
||||
constinit lmem::HeapHandle g_heap_handle = nullptr;
|
||||
constinit sf::ExpHeapMemoryResource g_sf_memory_resource;
|
||||
|
||||
void IpcServerThreadFunction(void *) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue