Can a child process generated by "fork()" ever have a process id lesser than its parent?

StackOverflow https://stackoverflow.com/questions/21635916

  •  08-10-2022
  •  | 
  •  

Pregunta

Can a child process generated by fork() ever have a process id lesser than its parent(without crossing the maximum limit)?

The PID is usually the next available value but anyhow can it possibly be less than the parent's PID?

¿Fue útil?

Solución

Yes. PIDs are not guaranteed to be in any order. Some systems and some security extensions generate random PIDs to avoid attacks based on child PID prediction. Of course even systems that linearly generate PIDs need to wrap around at some point.

Otros consejos

Yes. PIDs are reused, and on some systems, PIDs do not necessarily increase monotonically.

Yes, the PIDs are reused after crossing the maximum limit (which depends on the OS and possibly configuration). So it's definitely possible provided the system is starting processes frequently enough.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top