mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-31 23:08:22 -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
|
@ -18,10 +18,11 @@
|
|||
|
||||
namespace ams::os {
|
||||
|
||||
void InitializeForStratosphereInternal();
|
||||
void Initialize();
|
||||
|
||||
}
|
||||
|
||||
#if defined(ATMOSPHERE_OS_HORIZON)
|
||||
extern "C" {
|
||||
|
||||
/* Provide libnx address space allocation shim. */
|
||||
|
@ -30,6 +31,7 @@ extern "C" {
|
|||
}
|
||||
|
||||
}
|
||||
#endif
|
||||
|
||||
namespace ams::hos {
|
||||
|
||||
|
@ -53,13 +55,15 @@ namespace ams::hos {
|
|||
|
||||
void InitializeForStratosphere() {
|
||||
/* Initialize the global os resource managers. This *must* be done before anything else in stratosphere. */
|
||||
os::InitializeForStratosphereInternal();
|
||||
os::Initialize();
|
||||
|
||||
/* Initialize hos::Version API. */
|
||||
hos::InitializeVersionInternal(CanAllowTemporaryApproximateVersion());
|
||||
|
||||
#if defined(ATMOSPHERE_OS_HORIZON)
|
||||
/* Check that we're running under mesosphere. */
|
||||
AMS_ABORT_UNLESS(IsUnitTestProgramForSetVersion() || svc::IsKernelMesosphere());
|
||||
#endif
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue