Updated to clarify :
Wrapper function is defined as a function called in user mode, which initiates calls to system calls (in kernel mode). For example open , or printf.
I'm wondering if there is any limitation in the number of arguments that the wrapper function can get?
My intuation is that it should be six because of the registers amount, but I'm not sure. I know that system call is limited to six arguemnts. (I'm talking about 32bit and 64bit where more registers exists).
thanks