Maximum PID in Linux

后端 未结 4 1967
抹茶落季
抹茶落季 2020-12-02 12:38

I am porting an application from Tru64 to Linux and it uses PID_MAX defined in limits.h. Linux doesn\'t have that define. How do I find PID_MAX in c withou

4条回答
  •  一个人的身影
    2020-12-02 13:26

    It's 32768 by default, you can read the value on your system in /proc/sys/kernel/pid_max.

    And you can set the value higher on 64-bit systems (up to 222 = 4,194,304) with:

    echo 4194304 > /proc/sys/kernel/pid_max
    

    Read more here:

    http://www.cs.wisc.edu/condor/condorg/linux_scalability.html (via archive.org)

提交回复
热议问题