forked from Bananymous/banan-os
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:
parent
b1065fa01d
commit
1c882ea361
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue