aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnton Babushkin <anton.babushkin@me.com>2014-02-27 18:32:55 +0400
committerAnton Babushkin <anton.babushkin@me.com>2014-02-27 18:32:55 +0400
commitf8187650083b361f61c07ceb712c21a25d1c80c4 (patch)
tree707be59aeca4fa271c416848ac5c83804c43efa4 /src
parentd975bf1f85e71a11911a2ae6b24ba49e4e8a3f17 (diff)
downloadpx4-firmware-f8187650083b361f61c07ceb712c21a25d1c80c4.tar.gz
px4-firmware-f8187650083b361f61c07ceb712c21a25d1c80c4.tar.bz2
px4-firmware-f8187650083b361f61c07ceb712c21a25d1c80c4.zip
top: CPU % indication bug fixed
Diffstat (limited to 'src')
-rw-r--r--src/systemcmds/top/top.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemcmds/top/top.c b/src/systemcmds/top/top.c
index 1ca3fc928..37e913040 100644
--- a/src/systemcmds/top/top.c
+++ b/src/systemcmds/top/top.c
@@ -233,8 +233,8 @@ top_main(void)
system_load.tasks[i].tcb->pid,
CONFIG_TASK_NAME_SIZE, system_load.tasks[i].tcb->name,
(system_load.tasks[i].total_runtime / 1000),
- (int)(curr_loads[i] * 100),
- (int)(curr_loads[i] * 100000.0f - (int)(curr_loads[i] * 1000.0f) * 100),
+ (int)(curr_loads[i] * 100.0f),
+ (int)((curr_loads[i] * 100.0f - (int)(curr_loads[i] * 100.0f)) * 1000),
stack_size - stack_free,
stack_size,
system_load.tasks[i].tcb->sched_priority,