diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-05-07 22:02:50 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-05-07 22:02:50 +0000 |
| commit | dbcb02832fa90ea7472f12783bbcaa2e2924ef43 (patch) | |
| tree | cdf2b215aad9ce76a282d45e5acacd6d57935334 /apps | |
| parent | 4c4ae04da9ab8d97658b16820fdb901ab9b45911 (diff) | |
| download | rockbox-dbcb02832fa90ea7472f12783bbcaa2e2924ef43.zip rockbox-dbcb02832fa90ea7472f12783bbcaa2e2924ef43.tar.gz rockbox-dbcb02832fa90ea7472f12783bbcaa2e2924ef43.tar.bz2 rockbox-dbcb02832fa90ea7472f12783bbcaa2e2924ef43.tar.xz | |
Use 'HZ' and remove 'volatile' as suggested by kugel.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25893 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/test_mem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/test_mem.c b/apps/plugins/test_mem.c index 2ad0e04..f1c890e 100644 --- a/apps/plugins/test_mem.c +++ b/apps/plugins/test_mem.c @@ -27,8 +27,8 @@ PLUGIN_HEADER #define LOOP_REPEAT 8 static volatile int buf[BUF_SIZE]; -/* (Byte per loop * loops * 100 ticks per s / ticks)>>10 = KB per s */ -#define KB_PER_SEC(delta) (((BUF_SIZE*sizeof(buf[0])*LOOP_REPEAT*100)/delta) >> 10) +/* (Byte per loop * loops * ticks per s / ticks)>>10 = KB per s */ +#define KB_PER_SEC(delta) (((BUF_SIZE*sizeof(buf[0])*LOOP_REPEAT*HZ)/delta) >> 10) enum plugin_status plugin_start(const void* parameter) { @@ -44,7 +44,7 @@ enum plugin_status plugin_start(const void* parameter) { unsigned i, j; int line = 0; - volatile int x; + int x; int delta; last_tick = *rb->current_tick; |