repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix setgroups behavior in multithreaded process
[musl.git]
/
src
/
linux
/
arch_prctl.c
blob
94603658ab7d5a8b5ad136b301c796760e8865e7
1
#include
"syscall.h"
2
#ifdef SYS_arch_prctl
3
int
arch_prctl
(
int
code
,
unsigned long
addr
)
4
{
5
return
syscall
(
SYS_arch_prctl
,
code
,
addr
);
6
}
7
#endif