From dfe56d36624b9da86121a40469d487099d9818e9 Mon Sep 17 00:00:00 2001 From: kosaki Date: Tue, 21 Oct 2014 18:46:46 +0000 Subject: * ext/etc/etc.c (etc_nprocessors_affin): minor spell fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/etc/etc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/etc/etc.c') diff --git a/ext/etc/etc.c b/ext/etc/etc.c index 58c00b0161..b25cb7b8e0 100644 --- a/ext/etc/etc.c +++ b/ext/etc/etc.c @@ -928,11 +928,11 @@ etc_nprocessors_affin(void) * The precious way is to use /sys/devices/system/cpu/online. But there are * two problems, * - Costly calculation - * It is minor issue, but possibly kill the benefit of parallel processing. + * It is a minor issue, but possibly kill a benefit of a parallel processing. * - No guarantee to exist /sys/devices/system/cpu/online - * This is an issue especially when using containers. - * So, we use hardcode number for workaround. Current linux kernel - * (Linux 3.17) support 8192 cpus at maximum. Then 16384 is enough large. + * This is an issue especially when using Linux containers. + * So, we use hardcode number for a workaround. Current linux kernel + * (Linux 3.17) support 8192 cpus at maximum. Then 16384 must be enough. */ for (n=64; n < 16384; n *= 2) { size = CPU_ALLOC_SIZE(n); -- cgit v1.2.3