Skip to content
Snippets Groups Projects
Commit d1873b01 authored by murgatroid99's avatar murgatroid99
Browse files

Fixed incorrect comment format

parent 5912fb5c
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,8 @@ ...@@ -51,7 +51,8 @@
static int ncpus = 0; static int ncpus = 0;
static void init_num_cpus() { 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); ncpus = (int)sysconf(_SC_NPROCESSORS_ONLN);
if (ncpus < 1) { if (ncpus < 1) {
gpr_log(GPR_ERROR, "Cannot determine number of CPUs: assuming 1"); gpr_log(GPR_ERROR, "Cannot determine number of CPUs: assuming 1");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment