Pure code style fix of cpuload, no funcationality changes

This commit is contained in:
Lorenz Meier 2014-01-30 13:07:17 +01:00
parent 2b17909f0c
commit 1458bdfbcb
2 changed files with 7 additions and 8 deletions

View File

@ -93,8 +93,7 @@ void cpuload_initialize_once()
#endif /* CONFIG_SCHED_WORKQUEUE */ #endif /* CONFIG_SCHED_WORKQUEUE */
// perform static initialization of "system" threads // perform static initialization of "system" threads
for (system_load.total_count = 0; system_load.total_count < static_tasks_count; system_load.total_count++) for (system_load.total_count = 0; system_load.total_count < static_tasks_count; system_load.total_count++) {
{
system_load.tasks[system_load.total_count].start_time = now; system_load.tasks[system_load.total_count].start_time = now;
system_load.tasks[system_load.total_count].total_runtime = 0; system_load.tasks[system_load.total_count].total_runtime = 0;
system_load.tasks[system_load.total_count].curr_start_time = 0; system_load.tasks[system_load.total_count].curr_start_time = 0;

View File

@ -40,15 +40,15 @@ __BEGIN_DECLS
#include <nuttx/sched.h> #include <nuttx/sched.h>
struct system_load_taskinfo_s { struct system_load_taskinfo_s {
uint64_t total_runtime; ///< Runtime since start (start_time - total_runtime)/(start_time - current_time) = load uint64_t total_runtime; ///< Runtime since start (start_time - total_runtime)/(start_time - current_time) = load
uint64_t curr_start_time; ///< Start time of the current scheduling slot uint64_t curr_start_time; ///< Start time of the current scheduling slot
uint64_t start_time; ///< FIRST start time of task uint64_t start_time; ///< FIRST start time of task
FAR struct tcb_s *tcb; ///< FAR struct tcb_s *tcb; ///<
bool valid; ///< Task is currently active / valid bool valid; ///< Task is currently active / valid
}; };
struct system_load_s { struct system_load_s {
uint64_t start_time; ///< Global start time of measurements uint64_t start_time; ///< Global start time of measurements
struct system_load_taskinfo_s tasks[CONFIG_MAX_TASKS]; struct system_load_taskinfo_s tasks[CONFIG_MAX_TASKS];
uint8_t initialized; uint8_t initialized;
int total_count; int total_count;