Skip to content
Snippets Groups Projects
Commit 88d44e95 authored by Glauber Costa's avatar Glauber Costa Committed by Pekka Enberg
Browse files

runtime: stub daemon symbol


Just so the symbol exists. We expect people to run their programs in foreground,
but if linked without lazy bindings, the symbol may be required.

Reviewed-by: default avatarNadav Har'El <nyh@cloudius-systems.com>
Signed-off-by: default avatarGlauber Costa <glommer@cloudius-systems.com>
Signed-off-by: default avatarPekka Enberg <penberg@cloudius-systems.com>
parent e7055f04
No related branches found
No related tags found
No related merge requests found
......@@ -500,3 +500,9 @@ int prctl(int option, ...)
errno = EINVAL;
return -1;
}
int daemon(int nochdir, int noclose)
{
WARN_STUBBED();
return -1;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment