race condition fix: block all signals before decrementing thread count
[musl] / src / linux / swapoff.c
1 #include <sys/swap.h>
2 #include "syscall.h"
3
4 int swapoff(const char *path)
5 {
6         return syscall1(__NR_swapoff, (long)path);
7 }