2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-15 06:12:59 +00:00
cheat.sheets/sheets/prctl
2021-06-08 20:42:25 +01:00

14 lines
335 B
Plaintext

# prctl
#
# Get or set the resource controls of running processes,
# Tasks, and projects (Solaris)
# Examine process limits and permissions:
prctl ${PID}
# Examine process limits and permissions in machine parse-able format:
prctl -P ${PID}
# Get specific limit for a running process:
prctl -n process.max-file-descriptor ${PID}