1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 14:03:25 +01:00

os: remove completed TODO

This commit is contained in:
Michael Scire 2020-11-20 17:50:05 -08:00
parent 1ea49bdae3
commit 24eef96b15

View file

@ -132,7 +132,6 @@ namespace ams::os {
/* Try to map up to 64 times. */ /* Try to map up to 64 times. */
for (int i = 0; i < 64; ++i) { for (int i = 0; i < 64; ++i) {
/* Reserve space to map the memory. */ /* Reserve space to map the memory. */
/* TODO: os::AslrSpaceManager */
void *map_address = impl::GetAslrSpaceManager().AllocateSpace(tmem->size); void *map_address = impl::GetAslrSpaceManager().AllocateSpace(tmem->size);
R_UNLESS(map_address != nullptr, os::ResultOutOfAddressSpace()); R_UNLESS(map_address != nullptr, os::ResultOutOfAddressSpace());