add clock_adjtime, remap_file_pages, and syncfs syscall wrappers
patch by Justin Cormack, with slight modification
This commit is contained in:
parent
bd261bf25e
commit
662da62eb7
6 changed files with 36 additions and 0 deletions
8
src/linux/syncfs.c
Normal file
8
src/linux/syncfs.c
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#define _GNU_SOURCE
|
||||
#include <unistd.h>
|
||||
#include "syscall.h"
|
||||
|
||||
void syncfs(int fd)
|
||||
{
|
||||
__syscall(SYS_syncfs, fd);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue