mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 01:17:46 +00:00
LibC: Change a couple of ASSERT_NOT_REACHED() to TODO()
Just for semantic correctness and better visibility of those unimplemented stub functions.
This commit is contained in:
parent
d64d2ff07b
commit
b42f0b9650
8 changed files with 21 additions and 14 deletions
|
@ -67,7 +67,7 @@ void* dlopen(const char* filename, int flags)
|
|||
// FIXME: Return the handle for "the main executable"
|
||||
// The Serenity Kernel will keep a mapping of the main elf binary resident in memory,
|
||||
// But a future dynamic loader might have a different idea/way of letting us access this information
|
||||
ASSERT_NOT_REACHED();
|
||||
TODO();
|
||||
}
|
||||
|
||||
auto basename = LexicalPath(filename).basename();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue