본문 바로가기

인프라

공부링크 process thread pid 관련

pid_max, thread-max, ulimit -u 차이 설명 

https://itectec.com/unixlinux/linux-understanding-the-differences-between-pid_max-ulimit-u-and-thread_max/

 

pid_max값을 초과하면 발생하는 문제점

  • PIDs are generated sequentially and before being assigned to a process a check is made to ensure a process doesn't currently have a particular PID. When pid_max is reached the counter simply wraps back to the beginning. If there are no more PIDs available then no more proceses can be created.

process와 thread 차이

https://shoark7.github.io/programming/knowledge/difference-between-process-and-thread

'인프라' 카테고리의 다른 글

DNS에 대하여  (0) 2021.09.16
[OS] 리눅스 기본 명령어 정리  (0) 2020.04.11
[OS] 프로세스와 쓰레드의 차이  (0) 2018.04.24
[네트워크] 네트워크 가상화란  (0) 2017.11.19
[네트워크] 패킷분석  (0) 2017.10.14