The essence of the task is that you need to block certain processes. It was decided to create a hook that would intercept system calls coming to the kernel.
But then the question arose: is there such a functional at the kernel level?
The essence of the task is that you need to block certain processes. It was decided to create a hook that would intercept system calls coming to the kernel.
But then the question arose: is there such a functional at the kernel level?
if you need to stop a process, send it a SIGSTOP signal. quote from man 7 signal
:
The signals SIGKILL and SIGSTOP cannot be caught, blocked, or ignored.
To continue the process after stopping, send him a SIGCONT signal.
details - in man 7 signal
or, for example, on the Internet .
Source: https://ru.stackoverflow.com/questions/506294/
All Articles