Skip to content
Snippets Groups Projects
Commit 4217b214 authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

add getuid/getgid stubs

parent ad29e241
No related branches found
No related tags found
No related merge requests found
......@@ -167,6 +167,16 @@ int getpid()
return 0;
}
uid_t getuid()
{
return 0;
}
gid_t getgid()
{
return 0;
}
int mincore(void *addr, size_t length, unsigned char *vec)
{
memset(vec, 0x01, (length + getpagesize() - 1) / getpagesize());
......
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