Add Benchmark Sequential

This commit is contained in:
TXuian 2022-12-09 22:58:47 +08:00
parent 73a2917ba3
commit 76241fb217
1 changed files with 2 additions and 1 deletions

View File

@ -177,7 +177,8 @@ void *run_benchmark_parallel(void *args) {
case_attr.schedparam.sched_priority = 23; case_attr.schedparam.sched_priority = 23;
case_attr.stacksize = 4096; case_attr.stacksize = 4096;
PrivTaskCreate(&res_thread, &case_attr, print_result_asyn, &g_start_time); PrivTaskCreate(&res_thread, &case_attr, print_result_asyn,
(void *)&g_start_time);
return NULL; return NULL;
} }