diff options
| author | Peter Maydell | 2011-01-06 12:05:10 +0100 |
|---|---|---|
| committer | Riku Voipio | 2011-01-07 16:13:22 +0100 |
| commit | c727f47d59641c43ce171126232fd8049296adf6 (patch) | |
| tree | fce1c2a0ebc893077b5ac9ca851d2f31f1f0566c /linux-user/strace.list | |
| parent | cris: Avoid useless tmp in t_gen_cc_jmp() (diff) | |
| download | qemu-c727f47d59641c43ce171126232fd8049296adf6.tar.gz qemu-c727f47d59641c43ce171126232fd8049296adf6.tar.xz qemu-c727f47d59641c43ce171126232fd8049296adf6.zip | |
linux-user: Implement sync_file_range{,2} syscalls
Implement the missing syscalls sync_file_range and sync_file_range2.
The latter in particular is used by newer versions of apt on Ubuntu
for ARM.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Diffstat (limited to 'linux-user/strace.list')
| -rw-r--r-- | linux-user/strace.list | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linux-user/strace.list b/linux-user/strace.list index 97b7f7691d..d7be0e7a68 100644 --- a/linux-user/strace.list +++ b/linux-user/strace.list @@ -1518,3 +1518,9 @@ #ifdef TARGET_NR_utimensat { TARGET_NR_utimensat, "utimensat", NULL, print_utimensat, NULL }, #endif +#ifdef TARGET_NR_sync_file_range +{ TARGET_NR_sync_file_range, "sync_file_range", NULL, NULL, NULL }, +#endif +#ifdef TARGET_NR_sync_file_range2 +{ TARGET_NR_sync_file_range2, "sync_file_range2", NULL, NULL, NULL }, +#endif |
