2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/prctl
Igor Chubin 803f27fe5a prctl
2017-06-04 20:30:06 +00:00

14 lines
334 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 parseable format:
prctl -P ${PID}
# Get specific limit for a running process:
prctl -n process.max-file-descriptor ${PID}