We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea0f11 commit d2d22c6Copy full SHA for d2d22c6
examples/utest/testcases/kernel/mem_tc.c
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2006-2019, RT-Thread Development Team
+ * Copyright (c) 2006-2021, RT-Thread Development Team
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
@@ -99,7 +99,7 @@ static void mem_functional_test(void)
99
/* get total size */
100
total_size = max_block(heap);
101
uassert_int_not_equal(total_size, 0);
102
- /*
+ /*
103
* Allocate all memory at a time and test whether
104
* the memory allocation release function is effective
105
*/
@@ -114,7 +114,7 @@ static void mem_functional_test(void)
114
rt_smem_free(ctx.ptr);
115
uassert_int_equal(max_block(heap), total_size);
116
}
117
118
* Apply for memory release sequentially and
119
* test whether memory block merging is effective
120
0 commit comments