]> granicus.if.org Git - strace/blob - readahead.c
tests: check decoding of prctl PR_GET_TID_ADDRESS operation
[strace] / readahead.c
1 #include "defs.h"
2
3 SYS_FUNC(readahead)
4 {
5         int argn;
6
7         printfd(tcp, tcp->u_arg[0]);
8         argn = printllval(tcp, ", %lld", 1);
9         tprintf(", %" PRI_klu, tcp->u_arg[argn]);
10
11         return RVAL_DECODED;
12 }