* @brief Get the inner most frame of target thread * * @param thread the thread which frame belongs to * @param frame the specified frame to be unwound * @return rt_err_t 0 is succeed, otherwise a failure */
| 115 | * @return rt_err_t 0 is succeed, otherwise a failure |
| 116 | */ |
| 117 | rt_weak rt_err_t rt_hw_backtrace_frame_get(rt_thread_t thread, struct rt_hw_backtrace_frame *frame) |
| 118 | { |
| 119 | RT_UNUSED(thread); |
| 120 | RT_UNUSED(frame); |
| 121 | |
| 122 | LOG_W("%s is not implemented", __func__); |
| 123 | return -RT_ENOSYS; |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * @brief Unwind the target frame |
no outgoing calls
no test coverage detected