aboutsummaryrefslogtreecommitdiffstats
path: root/readahead.c
blob: 8f47988d8d0534ab10c4fe54582c3bdf57fec2d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "defs.h"

int
sys_readahead(struct tcb *tcp)
{
	if (entering(tcp)) {
		int argn;
		printfd(tcp, tcp->u_arg[0]);
		argn = printllval(tcp, ", %lld", 1);
		tprintf(", %ld", tcp->u_arg[argn]);
	}
	return 0;
}