mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 18:06:00 +02:00

* pages./: Automatically add alias pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages./: Automatically add links Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Fix false positives from script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
16 lines
508 B
Markdown
16 lines
508 B
Markdown
# prctl
|
|
|
|
> Obtenir ou définir les contrôles de ressources des processus, tâches et projets en cours d'exécution.
|
|
> Plus d'informations : <https://www.unix.com/man-page/sunos/1/prctl>.
|
|
|
|
- Examiner les limites et les autorisations des processus :
|
|
|
|
`prctl {{pid}}`
|
|
|
|
- Examiner les limites et les autorisations de processus dans un format analysable par machine :
|
|
|
|
`prctl -P {{pid}}`
|
|
|
|
- Obtenir une limite spécifique pour un processus en cours d'exécution :
|
|
|
|
`prctl -n process.max-file-descriptor {{pid}}`
|