Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
3691562e7dc030047048cd9ef993ab1bf4c69dce
/
.
/
get_robust_list.c
blob: 02f814827b5136daeec6c6492eee43390f540d17 [
file
] [
log
] [
blame
]
#include
"defs.h"
SYS_FUNC
(
get_robust_list
)
{
if
(
entering
(
tcp
))
{
tprintf
(
"%ld, "
,
(
long
)
(
pid_t
)
tcp
->
u_arg
[
0
]);
}
else
{
printnum_long
(
tcp
,
tcp
->
u_arg
[
1
],
"%#lx"
);
tprints
(
", "
);
printnum_long
(
tcp
,
tcp
->
u_arg
[
2
],
"%lu"
);
}
return
0
;
}