| 96 | ****************************************************************************/ |
| 97 | |
| 98 | void host_cpu_started(void) |
| 99 | { |
| 100 | #ifdef CONFIG_SCHED_INSTRUMENTATION_SWITCH |
| 101 | struct tcb_s *tcb = this_task(); |
| 102 | |
| 103 | /* Notify that this CPU has started */ |
| 104 | |
| 105 | sched_note_cpu_started(tcb); |
| 106 | |
| 107 | /* Announce that the IDLE task has started */ |
| 108 | |
| 109 | sched_note_start(tcb); |
| 110 | #endif |
| 111 | } |
| 112 | |
| 113 | /**************************************************************************** |
| 114 | * Name: up_cpu_start |
no test coverage detected