• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "defs.h"
2 
SYS_FUNC(fchownat)3 SYS_FUNC(fchownat)
4 {
5 	if (entering(tcp)) {
6 		print_dirfd(tcp, tcp->u_arg[0]);
7 		printpath(tcp, tcp->u_arg[1]);
8 		printuid(", ", tcp->u_arg[2]);
9 		printuid(", ", tcp->u_arg[3]);
10 		tprints(", ");
11 		printflags(at_flags, tcp->u_arg[4], "AT_???");
12 	}
13 	return 0;
14 }
15