strace/personality.c
Dmitry V. Levin ada84324ae personality.c: make use of RVAL_DECODED
* personality.c (sys_personality): Update for RVAL_DECODED.
2015-07-18 00:01:40 +00:00

13 lines
198 B
C

#include "defs.h"
#include <linux/personality.h>
#include "xlat/personality_options.h"
SYS_FUNC(personality)
{
printxval(personality_options, tcp->u_arg[0], "PER_???");
return RVAL_DECODED;
}