mirror of https://github.com/thesofproject/sof.git
testbench: take the global data off the stack.
Testbench prm is global data used by many thread. Take it off the stack. Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
This commit is contained in:
parent
480d1ad168
commit
6f43299f3b
|
@ -726,9 +726,10 @@ static void *pipline_test(void *data)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static struct testbench_prm tp;
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
struct testbench_prm tp;
|
||||
struct pipeline_thread_data ptdata[CONFIG_CORE_COUNT];
|
||||
int i, err;
|
||||
|
||||
|
|
Loading…
Reference in New Issue