We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The kernel uses a non-standard way of passing variables to internal functions. The AMD64 ABI should be investigated to see if it is a good fit.
From the AMD64 ABI: Passing Once arguments are classified, the registers get assigned (in left-to-right order) for passing as follows:
Return values are passed as %rax, %rdx
Linux system call table
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The kernel uses a non-standard way of passing variables to internal functions. The AMD64 ABI should be investigated to see if it is a good fit.
From the AMD64 ABI:
Passing Once arguments are classified, the registers get assigned (in left-to-right order) for passing as follows:
%rsi, %rdx, %rcx, %r8 and %r9 is used.
are taken in the order from %xmm0 to %xmm7.
Return values are passed as %rax, %rdx
Linux system call table
The text was updated successfully, but these errors were encountered: