summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2f74eb0)
raw | patch | inline | side by side (parent: 2f74eb0)
author | Fabien Wernli <cpan@faxm0dem.org> | |
Wed, 12 Nov 2014 11:06:09 +0000 (12:06 +0100) | ||
committer | Fabien Wernli <cpan@faxm0dem.org> | |
Wed, 12 Nov 2014 11:06:09 +0000 (12:06 +0100) |
Change-Id: I0201ac6e3c6e3c9bfcf55b74df6f13b9d961a90e
src/cpu.c | patch | blob | history |
diff --git a/src/cpu.c b/src/cpu.c
index 91dfade7bea352f044d4e8e5c84daad86c9bca39..d1978f96b1b24850e02a59c591bbd48ab6985f94 100644 (file)
--- a/src/cpu.c
+++ b/src/cpu.c
{
size_t cpu_num;
if (report_by_cpu) {
- for (cpu_num = 0; cpu_num < global_cpu_num; cpu_num++)
- {
- cpu_state_t *s = get_cpu_state (cpu_num, state);
+ for (cpu_num = 0; cpu_num < global_cpu_num; cpu_num++)
+ {
+ cpu_state_t *s = get_cpu_state (cpu_num, state);
- if (!s->has_value)
- continue;
+ if (!s->has_value)
+ continue;
- submit_derive ((int) cpu_num, (int) state, s->conv.last_value.derive);
- }
+ submit_derive ((int) cpu_num, (int) state, s->conv.last_value.derive);
+ }
} else {
- derive_t derive_total = 0;
- for (cpu_num = 0; cpu_num < global_cpu_num; cpu_num++)
- {
- cpu_state_t *s = get_cpu_state (cpu_num, state);
+ derive_t derive_total = 0;
+ for (cpu_num = 0; cpu_num < global_cpu_num; cpu_num++)
+ {
+ cpu_state_t *s = get_cpu_state (cpu_num, state);
- if (!s->has_value)
- continue;
+ if (!s->has_value)
+ continue;
- derive_total += s->conv.last_value.derive;
+ derive_total += s->conv.last_value.derive;
- }
- submit_derive (-1, (int) state, derive_total);
+ }
+ submit_derive (-1, (int) state, derive_total);
}
}
} /* }}} void cpu_commit_without_aggregation */