DynamicLoader: Don't print TODOs on PT_GNU_ headers

These should be either handled by kernel or just used as optimizations.
There is no requirement to handle them in dynamic loader
This commit is contained in:
Bananymous 2025-05-30 22:14:52 +03:00
parent b1065fa01d
commit 1c882ea361
1 changed files with 0 additions and 1 deletions

View File

@ -928,7 +928,6 @@ static LoadedElf& load_elf(const char* path, int fd)
case PT_GNU_EH_FRAME:
case PT_GNU_STACK:
case PT_GNU_RELRO:
print(STDDBG_FILENO, "TODO: PT_GNU_*\n");
break;
case PT_TLS:
tls_header = program_header;