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
Reptile/rep_mod.c
Line 135 in 2f13aac
rcu_read_lock() for_each_process() { ... } rcu_read_unlock()
Or:
read_lock(&tasklist_lock) for_each_process() { ... } read_unlock(&tasklist_lock)
Also get_task_struct() required for returning tasks.
See get_pid_task
The text was updated successfully, but these errors were encountered:
fixed at:
Line 140 in abd19e1
Sorry, something went wrong.
No branches or pull requests
Reptile/rep_mod.c
Line 135 in 2f13aac
rcu_read_lock()
for_each_process() { ... }
rcu_read_unlock()
Or:
read_lock(&tasklist_lock)
for_each_process() { ... }
read_unlock(&tasklist_lock)
Also get_task_struct() required for returning tasks.
See get_pid_task
The text was updated successfully, but these errors were encountered: