add to, and prioritize the TODO a little.
[trinity.git] / syscalls / readahead.c
blob879cbaadd2f4dc68f00cacb77b4646be0e63e80a
1 /*
2 * SYSCALL_DEFINE(readahead)(int fd, loff_t offset, size_t count)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_readahead = {
7 .name = "readahead",
8 .num_args = 3,
9 .arg1name = "fd",
10 .arg1type = ARG_FD,
11 .arg2name = "offset",
12 .arg3name = "count",
13 .arg3type = ARG_LEN,
14 .flags = NEED_ALARM,
15 .group = GROUP_VFS,