shutdown CPU */
| 121 | |
| 122 | /** shutdown CPU */ |
| 123 | void rt_hw_cpu_shutdown(void) |
| 124 | { |
| 125 | rt_uint32_t level; |
| 126 | rt_kprintf("shutdown...\n"); |
| 127 | |
| 128 | level = rt_hw_interrupt_disable(); |
| 129 | |
| 130 | sbi_shutdown(); |
| 131 | |
| 132 | while (1) |
| 133 | ; |
| 134 | } |
| 135 | |
| 136 | void rt_hw_set_process_id(int pid) |
| 137 | { |
no test coverage detected