memorystress:Fix some warnings and make the index randomized.
Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
This commit is contained in:
parent
4a78dedbae
commit
5645b82b74
@ -23,6 +23,7 @@
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
@ -224,7 +225,7 @@ static bool memorystress_iter(FAR struct memorystress_context_s *context)
|
|||||||
bool debug = context->debug;
|
bool debug = context->debug;
|
||||||
size_t index;
|
size_t index;
|
||||||
|
|
||||||
index = randnum(context->config->nodelen, &seed);
|
index = rand() % (context->config->nodelen - 1);
|
||||||
node = &(context->node_array[index]);
|
node = &(context->node_array[index]);
|
||||||
func = (FAR struct memorystress_func_s *)context->config->func;
|
func = (FAR struct memorystress_func_s *)context->config->func;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user