load_image(): _kern_load_image() now has a flags parameter. We pass B_WAIT_TILL_LOADED.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11692 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-03-12 15:04:03 +00:00
parent b484724711
commit 5935412cad
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,8 @@ load_image(int32 argCount, const char **args, const char **environ)
while (environ[envCount] != NULL)
envCount++;
return _kern_load_image(argCount, args, envCount, environ, B_NORMAL_PRIORITY);
return _kern_load_image(argCount, args, envCount, environ,
B_NORMAL_PRIORITY, B_WAIT_TILL_LOADED);
}