| 361 | } |
| 362 | |
| 363 | void rt_smp_call_init(void) |
| 364 | { |
| 365 | rt_memset(&_smp_data_cores, 0, sizeof(_smp_data_cores)); |
| 366 | |
| 367 | for (int i = 0; i < RT_CPUS_NR; i++) |
| 368 | { |
| 369 | for (int j = 0; j < RT_CPUS_NR; j++) |
| 370 | { |
| 371 | rt_hw_spin_lock_init(&_smp_data_cores[i].call_req_cores[j].freed_lock); |
| 372 | } |
| 373 | } |
| 374 | } |
no test coverage detected