diff options
Diffstat (limited to 'src/core/support/cpu_iphone.c')
-rw-r--r-- | src/core/support/cpu_iphone.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/core/support/cpu_iphone.c b/src/core/support/cpu_iphone.c index 0d679414ac..82b49b47bc 100644 --- a/src/core/support/cpu_iphone.c +++ b/src/core/support/cpu_iphone.c @@ -36,11 +36,7 @@ #ifdef GPR_CPU_IPHONE /* Probably 2 instead of 1, but see comment on gpr_cpu_current_cpu. */ -unsigned -gpr_cpu_num_cores (void) -{ - return 1; -} +unsigned gpr_cpu_num_cores(void) { return 1; } /* Most code that's using this is using it to shard across work queues. So unless profiling shows it's a problem or there appears a way to detect the @@ -48,10 +44,6 @@ gpr_cpu_num_cores (void) Note that the interface in cpu.h lets gpr_cpu_num_cores return 0, but doing it makes it impossible for gpr_cpu_current_cpu to satisfy its stated range, and some code might be relying on it. */ -unsigned -gpr_cpu_current_cpu (void) -{ - return 0; -} +unsigned gpr_cpu_current_cpu(void) { return 0; } #endif /* GPR_CPU_IPHONE */ |