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

#include <linux/personality.h>

#include "xlat/personality_options.h"

SYS_FUNC(personality)
{
	if (entering(tcp))
		printxval(personality_options, tcp->u_arg[0], "PER_???");
	return 0;
}