On 14/11/16 17:49, Vincent Guittot wrote:
On 11 November 2016 at 10:17, Juri Lelli juri.lelli@arm.com wrote:
[...]
static inline unsigned long loadwait(unsigned long exec) {
unsigned long load_count;
unsigned long long load_count;
Why do you need unsigned long long for load_count now that max duration is 1000000000 ns so load_count <= 1000000000
unsigned long secs;
int i;
/*
* If exec is still to big, let's run it in bursts
s/still to big/still too big/ ?
Both fixed.
Thanks,
- Juri