You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
333 B
12 lines
333 B
/**
|
|
* 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_";
|
|
}
|