You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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}