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

stub setsid


Same as fork, vfork, etc. So goes in the same place.

Signed-off-by: default avatarGlauber Costa <glommer@cloudius-systems.com>
Signed-off-by: default avatarPekka Enberg <penberg@cloudius-systems.com>
parent 2af316f8
No related branches found
No related tags found
No related merge requests found
......@@ -190,6 +190,12 @@ int fork()
return -1;
}
pid_t setsid(void)
{
WARN_STUBBED();
return -1;
}
NO_SYS(int execvp(const char *, char *const []));
NO_SYS(int symlink(const char *, const char *));
......
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