|
|
|
@ -118,7 +118,7 @@ static void test_instant_alloc_then_free(void) { |
|
|
|
|
grpc_resource_user* usr = grpc_resource_user_create(q, "usr"); |
|
|
|
|
{ |
|
|
|
|
grpc_core::ExecCtx exec_ctx; |
|
|
|
|
grpc_resource_user_alloc(usr, 1024, NULL); |
|
|
|
|
grpc_resource_user_alloc(usr, 1024, nullptr); |
|
|
|
|
} |
|
|
|
|
{ |
|
|
|
|
grpc_core::ExecCtx exec_ctx; |
|
|
|
@ -136,7 +136,7 @@ static void test_instant_alloc_free_pair(void) { |
|
|
|
|
grpc_resource_user* usr = grpc_resource_user_create(q, "usr"); |
|
|
|
|
{ |
|
|
|
|
grpc_core::ExecCtx exec_ctx; |
|
|
|
|
grpc_resource_user_alloc(usr, 1024, NULL); |
|
|
|
|
grpc_resource_user_alloc(usr, 1024, nullptr); |
|
|
|
|
grpc_resource_user_free(usr, 1024); |
|
|
|
|
} |
|
|
|
|
grpc_resource_quota_unref(q); |
|
|
|
@ -565,7 +565,7 @@ static void test_resource_user_stays_allocated_until_memory_released(void) { |
|
|
|
|
grpc_resource_user* usr = grpc_resource_user_create(q, "usr"); |
|
|
|
|
{ |
|
|
|
|
grpc_core::ExecCtx exec_ctx; |
|
|
|
|
grpc_resource_user_alloc(usr, 1024, NULL); |
|
|
|
|
grpc_resource_user_alloc(usr, 1024, nullptr); |
|
|
|
|
} |
|
|
|
|
{ |
|
|
|
|
grpc_core::ExecCtx exec_ctx; |
|
|
|
@ -608,8 +608,8 @@ test_resource_user_stays_allocated_and_reclaimers_unrun_until_memory_released( |
|
|
|
|
grpc_core::ExecCtx exec_ctx; |
|
|
|
|
grpc_resource_user_alloc(usr, 1024, set_event(&allocated)); |
|
|
|
|
grpc_core::ExecCtx::Get()->Flush(); |
|
|
|
|
GPR_ASSERT(gpr_event_wait(&allocated, |
|
|
|
|
grpc_timeout_seconds_to_deadline(5)) != NULL); |
|
|
|
|
GPR_ASSERT(gpr_event_wait(&allocated, grpc_timeout_seconds_to_deadline( |
|
|
|
|
5)) != nullptr); |
|
|
|
|
GPR_ASSERT(gpr_event_wait(&reclaimer_cancelled, |
|
|
|
|
grpc_timeout_milliseconds_to_deadline(100)) == |
|
|
|
|
nullptr); |
|
|
|
@ -667,8 +667,8 @@ static void test_reclaimers_can_be_posted_repeatedly(void) { |
|
|
|
|
grpc_core::ExecCtx exec_ctx; |
|
|
|
|
grpc_resource_user_alloc(usr, 1024, set_event(&allocated)); |
|
|
|
|
grpc_core::ExecCtx::Get()->Flush(); |
|
|
|
|
GPR_ASSERT(gpr_event_wait(&allocated, |
|
|
|
|
grpc_timeout_seconds_to_deadline(5)) != NULL); |
|
|
|
|
GPR_ASSERT(gpr_event_wait(&allocated, grpc_timeout_seconds_to_deadline( |
|
|
|
|
5)) != nullptr); |
|
|
|
|
GPR_ASSERT(gpr_event_wait(&reclaimer_done, |
|
|
|
|
grpc_timeout_seconds_to_deadline(5)) != |
|
|
|
|
nullptr); |
|
|
|
|