Can more than seven arguments be passed to system call in arm linux?
问题 In arm linux(EABI), system call number is passed in r7 and the arguments can be passed in r0-r6 registers Below table from (syscall(2)) shows the registers used to pass the system call arguments. arch/ABI arg1 arg2 arg3 arg4 arg5 arg6 arg7 Notes ────────────────────────────────────────────────────────────── alpha a0 a1 a2 a3 a4 a5 - arc r0 r1 r2 r3 r4 r5 - arm/OABI a1 a2 a3 a4 v1 v2 v3 arm/EABI r0 r1 r2 r3 r4 r5 r6 I am just curious whether seven is the maximum number of arguments that can be