huangcm
2025-08-25 f350412dc55c15118d0a7925d1071877498e5e24
1
2
3
4
5
6
7
8
9
10
11
/**
 * Returns prefix for a syscall constant literal.  It is has to be that way
 * thanks to ARM that decided to prefix their special system calls like sys32
 * and sys26 with __ARM_NR_* prefix instead of __NR_*, so we can't simply print
 * "__NR_".
 */
static inline const char *
nr_prefix(kernel_ulong_t scno)
{
   return "__NR_";
}