MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / rt_hw_backtrace_frame_get

Function rt_hw_backtrace_frame_get

src/kservice.c:117–124  ·  view source on GitHub ↗

* @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 */

Source from the content-addressed store, hash-verified

115 * @return rt_err_t 0 is succeed, otherwise a failure
116 */
117rt_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

Callers 1

rt_backtrace_threadFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected