Welcome to the Linux Foundation Forum!
PID(process ID)
impulse
Posts: 4
Hi, i'am a newbie in linux,
i want to ask something about process id,
linux is multiprogramming system, so independent user process may be running at the same time and with different user,
it's said that the value of PID(process id) is from 1 to 32768, i want to ask how if there is more than 32768 process in a computer, what the new value PID of new process, how linux kernel implement this??
thanks very much....
0
Comments
-
That's the OS limit. It can't handle more than that number of processes (AFAIK). It's not like you going to get to that many processes in one computer, are you?

Regards0 -
Very rarely would you exceed that many PIDs, however if the need comes up you can increase the maximum pids for the system, check http://www.cyberciti.biz/tips/howto-linux-increase-pid-limits.html for instructions.0
-
Thanks, i think i get important information here,
is in kernel the systemcall use "sysctl -w kernel.pid_max=4194303" itself or other similar syscall so linux automatically expand the pid on demand?
and not a long time ago, i find :
*PIDs are converted to matching process descriptors using a hash function.
*A pidhash table maps PID to descriptor.
*Collisions are resolved by chaining.
Is "collision" above means process with same pid??
if not, what does it mean?
Sorry, if i ask much, but i really want to know more,
btw, thanks for your information before
0 -
Yes, that command will expand it on demand, but it is best to set the value at boot time. When I tried the command on my system it errored out, so I am assuming that something is wrong with my custom kernel that is blocking the command.
I think the document you are referring to is stating that it two processes have the same descriptors that the hash table uses a chain of values on the descriptor value to associate the processes. There should never be two processes with a single pid value.0 -
Ouu, i see know, thanks, that's really a help,
0 -
"collision" , are refers to the hash table entries
using open addressing also collisions can be avoided.
Linux uses chaining, where the data entry hashes are filled with linked list of indexes of the data
As mfillpot mentioned, two processes can not have same PIDs. Linux will assign a PID to a process and if the process is finished, that PID get used, once the PID limit in OS exceeds and started to assign the PID again from 2 onwards. [ start from beginning. ]
0
Categories
- All Categories
- 177 LFX Mentorship
- 177 LFX Mentorship: Linux Kernel
- 750 Linux Foundation IT Professional Programs
- 373 Cloud Engineer IT Professional Program
- 169 Advanced Cloud Engineer IT Professional Program
- 74 DevOps IT Professional Program - Discontinued
- 4 DevOps & GitOps IT Professional Program
- 99 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 1 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 3 Cloud & Containers Training
- 1 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 1 Networking Training
- 1 Open Source Best Practice Training
- 1 System Administration Training
- 1 System Engineering Training
- 1 Web & Application Development Training
- 792 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 87 Storage
- 769 Linux Distributions
- 81 Debian
- 68 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 106 Mobile Computing
- 18 Android
- 73 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 392 Off Topic
- 121 Introductions
- 181 Small Talk
- 29 Study Material
- 955 Programming and Development
- 310 Kernel Development
- 627 Software Development
- 983 Software
- 375 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)