Update README.md

The actual 32bit libc limit PID_MAX hardcodes to 65535.
The initial value 65536 was taken from other 32bit Linux distro which is not applicable for 32bit Android.
So do a minor correction.

Refer termux-docker#40
This commit is contained in:
Jia Yuan Lo
2023-11-16 18:06:51 +08:00
committed by GitHub
parent 609437ad70
commit 6189bbd74b

View File

@@ -117,4 +117,4 @@ There a number of known issues which may not be resolved:
* When running certain multi threaded program in 32bit containers, the PIDs can
balloon and easily exceed libc's limit. The only way to fix this is to set
`/proc/sys/kernel/pid_max` to 65536. See [termux-docker#40](https://github.com/termux/termux-docker/issues/40).
`/proc/sys/kernel/pid_max` to 65535. See [termux-docker#40](https://github.com/termux/termux-docker/issues/40).