Skip to content

Commit f43b16f

Browse files
author
deepikabhavnani
committed
Cleaup and review comments addressed
1. Removed prefix thread_ from all elements of mbed_stats_thread_t 2. #if conditions aligned to rest of the file
1 parent bb8ccbd commit f43b16f

File tree

3 files changed

+33
-33
lines changed

3 files changed

+33
-33
lines changed

TESTS/mbed_platform/stats_thread/main.cpp

+18-18
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "mbed.h"
2323

2424
#if !defined(MBED_THREAD_STATS_ENABLED)
25-
#warning [NOT_SUPPORTED] test not supported
25+
#warning [NOT_SUPPORTED] test not supported
2626
#endif
2727

2828
using namespace utest::v1;
@@ -63,9 +63,9 @@ void test_case_single_thread_stats()
6363
TEST_ASSERT_EQUAL(1, (count-old_count));
6464

6565
for(int i = 0; i < count; i++) {
66-
if(0 == strcmp(stats[i].thread_name, "Th1")) {
67-
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size);
68-
TEST_ASSERT_EQUAL(osPriorityNormal, stats[i].thread_priority);
66+
if(0 == strcmp(stats[i].name, "Th1")) {
67+
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size);
68+
TEST_ASSERT_EQUAL(osPriorityNormal, stats[i].priority);
6969
break;
7070
}
7171
}
@@ -98,13 +98,13 @@ void test_case_multi_threads_blocked()
9898
int count = mbed_stats_thread_get_each(stats, MAX_THREAD_STATS);
9999
TEST_ASSERT_EQUAL(2, (count-old_count));
100100
for(int i = 0; i < count; i++) {
101-
if(0 == strcmp(stats[i].thread_name, "Th2")) {
102-
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size);
103-
TEST_ASSERT_EQUAL(osPriorityNormal1, stats[i].thread_priority);
104-
TEST_ASSERT_EQUAL(osThreadBlocked, stats[i].thread_state);
105-
} else if(0 == strcmp (stats[i].thread_name, "Th1")) {
106-
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size);
107-
TEST_ASSERT_EQUAL(osPriorityNormal, stats[i].thread_priority);
101+
if(0 == strcmp(stats[i].name, "Th2")) {
102+
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size);
103+
TEST_ASSERT_EQUAL(osPriorityNormal1, stats[i].priority);
104+
TEST_ASSERT_EQUAL(osThreadBlocked, stats[i].state);
105+
} else if(0 == strcmp (stats[i].name, "Th1")) {
106+
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size);
107+
TEST_ASSERT_EQUAL(osPriorityNormal, stats[i].priority);
108108
}
109109
}
110110

@@ -137,13 +137,13 @@ void test_case_multi_threads_terminate()
137137
TEST_ASSERT_EQUAL(2, (count-old_count));
138138

139139
for(int i = 0; i < count; i++) {
140-
if(0 == strcmp(stats[i].thread_name, "Th2")) {
141-
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size);
142-
TEST_ASSERT_EQUAL(osPriorityNormal2, stats[i].thread_priority);
143-
} else if(0 == strcmp(stats[i].thread_name, "Th1")) {
144-
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size);
145-
TEST_ASSERT_EQUAL(osPriorityNormal1, stats[i].thread_priority);
146-
TEST_ASSERT_EQUAL(osThreadBlocked, stats[i].thread_state);
140+
if(0 == strcmp(stats[i].name, "Th2")) {
141+
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size);
142+
TEST_ASSERT_EQUAL(osPriorityNormal2, stats[i].priority);
143+
} else if(0 == strcmp(stats[i].name, "Th1")) {
144+
TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size);
145+
TEST_ASSERT_EQUAL(osPriorityNormal1, stats[i].priority);
146+
TEST_ASSERT_EQUAL(osThreadBlocked, stats[i].state);
147147
}
148148
}
149149

platform/mbed_stats.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ size_t mbed_stats_stack_get_each(mbed_stats_stack_t *stats, size_t count)
7070
size_t mbed_stats_thread_get_each(mbed_stats_thread_t *stats, size_t count)
7171
{
7272
MBED_ASSERT(stats != NULL);
73-
memset(stats, 0, count*sizeof(mbed_stats_thread_t));
73+
memset(stats, 0, count * sizeof(mbed_stats_thread_t));
7474
size_t i = 0;
7575

76-
#if defined(MBED_THREAD_STATS_ENABLED) && MBED_CONF_RTOS_PRESENT
76+
#if defined(MBED_THREAD_STATS_ENABLED) && defined(MBED_CONF_RTOS_PRESENT)
7777
osThreadId_t *threads;
7878

7979
threads = malloc(sizeof(osThreadId_t) * count);
@@ -83,12 +83,12 @@ size_t mbed_stats_thread_get_each(mbed_stats_thread_t *stats, size_t count)
8383
count = osThreadEnumerate(threads, count);
8484

8585
for(i = 0; i < count; i++) {
86-
stats[i].thread_id = (uint32_t)threads[i];
87-
stats[i].thread_state = (uint32_t)osThreadGetState(threads[i]);
88-
stats[i].thread_priority = (uint32_t)osThreadGetPriority(threads[i]);
89-
stats[i].thread_stack_size = osThreadGetStackSize(threads[i]);
90-
stats[i].thread_stack_space = osThreadGetStackSpace(threads[i]);
91-
stats[i].thread_name = osThreadGetName(threads[i]);
86+
stats[i].id = (uint32_t)threads[i];
87+
stats[i].state = (uint32_t)osThreadGetState(threads[i]);
88+
stats[i].priority = (uint32_t)osThreadGetPriority(threads[i]);
89+
stats[i].stack_size = osThreadGetStackSize(threads[i]);
90+
stats[i].stack_space = osThreadGetStackSpace(threads[i]);
91+
stats[i].name = osThreadGetName(threads[i]);
9292
}
9393
osKernelUnlock();
9494
free(threads);

platform/mbed_stats.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ typedef struct {
5252
*/
5353

5454
typedef struct {
55-
uint32_t thread_id; /**< Thread Object Identifier */
56-
uint32_t thread_state; /**< Thread Object State */
57-
uint32_t thread_priority; /**< Thread Priority */
58-
uint32_t thread_stack_size; /**< Thread Stack Size */
59-
uint32_t thread_stack_space; /**< Thread remaining stack size */
60-
const char *thread_name; /**< Thread Object name */
55+
uint32_t id; /**< Thread Object Identifier */
56+
uint32_t state; /**< Thread Object State */
57+
uint32_t priority; /**< Thread Priority */
58+
uint32_t stack_size; /**< Thread Stack Size */
59+
uint32_t stack_space; /**< Thread remaining stack size */
60+
const char *name; /**< Thread Object name */
6161
} mbed_stats_thread_t;
6262

6363
/**
@@ -101,7 +101,7 @@ size_t mbed_stats_stack_get_each(mbed_stats_stack_t *stats, size_t count);
101101
* @param stats A pointer to an array of mbed_stats_thread_t structures to fill
102102
* @param count The number of mbed_stats_thread_t structures in the provided array
103103
* @return The number of mbed_stats_thread_t structures that have been filled,
104-
* this is equal to the number of stacks on the system.
104+
* this is equal to the number of threads on the system.
105105
*/
106106
size_t mbed_stats_thread_get_each(mbed_stats_thread_t *stats, size_t count);
107107

0 commit comments

Comments
 (0)