Convert code to use u{8,16,32,64}_t and s{8,16,32,64}_t instead of C99
integer types.
Jira: ZEP-2051
Change-Id: I6c676bc6c5e850a8725785554cd535e32067f33e
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
40 lines
736 B
C
40 lines
736 B
C
/* mempool_b.c */
|
|
|
|
/*
|
|
* Copyright (c) 1997-2010, 2013-2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "master.h"
|
|
|
|
#ifdef MEMPOOL_BENCH
|
|
|
|
/**
|
|
*
|
|
* @brief Memory pool get/free test
|
|
*
|
|
* @return N/A
|
|
*/
|
|
void mempool_test(void)
|
|
{
|
|
u32_t et; /* elapsed time */
|
|
int i;
|
|
struct k_mem_block block;
|
|
|
|
PRINT_STRING(dashline, output_file);
|
|
et = BENCH_START();
|
|
for (i = 0; i < NR_OF_POOL_RUNS; i++) {
|
|
k_mem_pool_alloc(&DEMOPOOL, &block, 16, K_FOREVER);
|
|
k_mem_pool_free(&block);
|
|
}
|
|
et = TIME_STAMP_DELTA_GET(et);
|
|
check_result();
|
|
|
|
PRINT_F(output_file, FORMAT,
|
|
"average alloc and dealloc memory pool block",
|
|
SYS_CLOCK_HW_CYCLES_TO_NS_AVG(et, (2 * NR_OF_POOL_RUNS)));
|
|
}
|
|
|
|
#endif /* MEMPOOL_BENCH */
|