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
Currently, whenever we add a new kernel call, we should update NR_SYSCALLS. If we are not cautious, this may introduce a bug in the kernel.
NR_SYSCALLS
Instead, we should create a constant NR_last_kcall with the last kernel call number and make NR_SYSCALLS expand to it.
NR_last_kcall
The text was updated successfully, but these errors were encountered:
joaofel-u
No branches or pull requests
Description
Currently, whenever we add a new kernel call, we should update
NR_SYSCALLS
. If we are not cautious, this may introduce a bug in the kernel.Instead, we should create a constant
NR_last_kcall
with the last kernel call number and makeNR_SYSCALLS
expand to it.The text was updated successfully, but these errors were encountered: