mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-05 12:00:16 +00:00
14 lines
334 B
Plaintext
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}
|