|
|
|
@ -71,12 +71,48 @@ static void test_buffer_user_no_op(void) { |
|
|
|
|
destroy_user(&usr); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void test_instant_alloc_then_free(void) { |
|
|
|
|
gpr_log(GPR_INFO, "** test_instant_alloc_then_free **"); |
|
|
|
|
grpc_buffer_pool *p = grpc_buffer_pool_create(); |
|
|
|
|
grpc_buffer_user usr; |
|
|
|
|
grpc_buffer_user_init(&usr, p); |
|
|
|
|
{ |
|
|
|
|
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; |
|
|
|
|
grpc_buffer_user_alloc(&exec_ctx, &usr, 1024, NULL); |
|
|
|
|
grpc_exec_ctx_finish(&exec_ctx); |
|
|
|
|
} |
|
|
|
|
{ |
|
|
|
|
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; |
|
|
|
|
grpc_buffer_user_free(&exec_ctx, &usr, 1024); |
|
|
|
|
grpc_exec_ctx_finish(&exec_ctx); |
|
|
|
|
} |
|
|
|
|
grpc_buffer_pool_unref(p); |
|
|
|
|
destroy_user(&usr); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void test_instant_alloc_free_pair(void) { |
|
|
|
|
gpr_log(GPR_INFO, "** test_instant_alloc_free_pair **"); |
|
|
|
|
grpc_buffer_pool *p = grpc_buffer_pool_create(); |
|
|
|
|
grpc_buffer_user usr; |
|
|
|
|
grpc_buffer_user_init(&usr, p); |
|
|
|
|
{ |
|
|
|
|
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; |
|
|
|
|
grpc_buffer_user_alloc(&exec_ctx, &usr, 1024, NULL); |
|
|
|
|
grpc_buffer_user_free(&exec_ctx, &usr, 1024); |
|
|
|
|
grpc_exec_ctx_finish(&exec_ctx); |
|
|
|
|
} |
|
|
|
|
grpc_buffer_pool_unref(p); |
|
|
|
|
destroy_user(&usr); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv) { |
|
|
|
|
grpc_test_init(argc, argv); |
|
|
|
|
grpc_init(); |
|
|
|
|
test_no_op(); |
|
|
|
|
test_resize_then_destroy(); |
|
|
|
|
test_buffer_user_no_op(); |
|
|
|
|
test_instant_alloc_then_free(); |
|
|
|
|
test_instant_alloc_free_pair(); |
|
|
|
|
grpc_shutdown(); |
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|