From 5bf03627248bc57f93087ccfb044e84acec7e85e Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 20 Mar 2008 13:33:35 +0000 Subject: [PATCH] Added TODO. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24492 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/libroot/posix/dlfcn.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/system/libroot/posix/dlfcn.c b/src/system/libroot/posix/dlfcn.c index 11dddc2a5b..4acb5e5805 100644 --- a/src/system/libroot/posix/dlfcn.c +++ b/src/system/libroot/posix/dlfcn.c @@ -21,6 +21,9 @@ static status_t sStatus; void * dlopen(char const *name, int mode) { +// TODO: According to the standard multiple dlopen() invocations for the same +// file will cause the object to be loaded once only. That is we should load +// the object as a library, not an add-on. status_t status; if (name == NULL)