diff options
author | murgatroid99 <mlumish@google.com> | 2015-06-22 14:12:58 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2015-06-22 14:12:58 -0700 |
commit | d1873b0128ea37c5dcf1cc42f05ba9083b07f944 (patch) | |
tree | 29ca7d3e74563958836cbdc7e36278a54f6ac207 /src/core | |
parent | 5912fb5ca084dd044217af5ea915c84104fff212 (diff) |
Fixed incorrect comment format
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/support/cpu_linux.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/support/cpu_linux.c b/src/core/support/cpu_linux.c index b59d013e92..282d4daab1 100644 --- a/src/core/support/cpu_linux.c +++ b/src/core/support/cpu_linux.c @@ -51,7 +51,8 @@ static int ncpus = 0; static void init_num_cpus() { - // This must be signed. sysconf returns -1 when the number can't be determined + /* This must be signed. sysconf returns -1 when the number cannot be + determined */ ncpus = (int)sysconf(_SC_NPROCESSORS_ONLN); if (ncpus < 1) { gpr_log(GPR_ERROR, "Cannot determine number of CPUs: assuming 1"); |