diff options
author | Craig Tiller <ctiller@google.com> | 2016-07-07 21:41:10 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-07-07 21:41:10 -0700 |
commit | f7cade1b4fee90abb0fabe48426e95357465c976 (patch) | |
tree | baee02f49d04f4b194dee40b9eb8682da8751dec /test/core/support | |
parent | 765c538d72572b9317661d4a6697d9547fb026a9 (diff) |
Rename async_execution_lock --> combiner, make it use closures, unroll previous changes for idleness
Diffstat (limited to 'test/core/support')
-rw-r--r-- | test/core/support/mpscq_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/support/mpscq_test.c b/test/core/support/mpscq_test.c index 4357a7c353..0b4bc254e2 100644 --- a/test/core/support/mpscq_test.c +++ b/test/core/support/mpscq_test.c @@ -109,7 +109,7 @@ static void test_mt(void) { if (tn->i == THREAD_ITERATIONS) num_done++; gpr_free(tn); } - gpr_log(GPR_DEBUG, "spins: %d", spins); + gpr_log(GPR_DEBUG, "spins: %" PRIdPTR, spins); for (size_t i = 0; i < GPR_ARRAY_SIZE(thds); i++) { gpr_thd_join(thds[i]); } |