From 6189bbd74be8ffc1a2be4453ddfcc1405cee2b18 Mon Sep 17 00:00:00 2001 From: Jia Yuan Lo Date: Thu, 16 Nov 2023 18:06:51 +0800 Subject: [PATCH] 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 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36aa31f..0f0b99f 100644 --- a/README.md +++ b/README.md @@ -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).