1staticinlineconstchar *
2nr_prefix(kernel_ulong_tscno)
3{
4/*
5 * For now, the set of syscalls that are shuffled is equivalent to the
6 * set of syscalls that have __ARM_NR_ prefix.
7 */8if (shuffle_scno(scno) != scno)
9return"__ARM_NR_";
10else11return"__NR_";
12}
13