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
/
swap.c
blob
8137d51ebff34c0e3658adaa1ca476fcacaf0dc5
1
#include <sys/swap.h>
2
#include
"syscall.h"
3
4
int
swapon
(
const char
*
path
,
int
flags
)
5
{
6
return
syscall
(
SYS_swapon
,
path
,
flags
);
7
}
8
9
int
swapoff
(
const char
*
path
)
10
{
11
return
syscall
(
SYS_swapoff
,
path
);
12
}