diff options
author | Linus Groh <mail@linusgroh.de> | 2021-01-17 08:22:20 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-17 08:43:46 +0100 |
commit | b42f0b9650fe4f2571896371a1c9820e1d7b2fbc (patch) | |
tree | 1b0cb4bf99e784110ce291650274b426ce3a604a /Userland/Libraries/LibC/dlfcn.cpp | |
parent | d64d2ff07b55ba32a9a38eb08178a8287beff6a8 (diff) | |
download | serenity-b42f0b9650fe4f2571896371a1c9820e1d7b2fbc.zip |
LibC: Change a couple of ASSERT_NOT_REACHED() to TODO()
Just for semantic correctness and better visibility of those
unimplemented stub functions.
Diffstat (limited to 'Userland/Libraries/LibC/dlfcn.cpp')
-rw-r--r-- | Userland/Libraries/LibC/dlfcn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/dlfcn.cpp b/Userland/Libraries/LibC/dlfcn.cpp index 04f742fcc3..f15fd2807b 100644 --- a/Userland/Libraries/LibC/dlfcn.cpp +++ b/Userland/Libraries/LibC/dlfcn.cpp @@ -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(); |