xref: /nrf52832-nimble/rt-thread/libcpu/ia32/backtrace.c (revision 104654410c56c573564690304ae786df310c91fc)
1*10465441SEvalZero /*
2*10465441SEvalZero  * File      : backtrace.c
3*10465441SEvalZero  * This file is part of RT-Thread RTOS
4*10465441SEvalZero  * COPYRIGHT (C) 2006, 2008 RT-Thread Development Team
5*10465441SEvalZero  *
6*10465441SEvalZero  * The license and distribution terms for this file may be
7*10465441SEvalZero  * found in the file LICENSE in this distribution or at
8*10465441SEvalZero  * http://openlab.rt-thread.com/license/LICENSE
9*10465441SEvalZero  *
10*10465441SEvalZero  * Change Logs:
11*10465441SEvalZero  * Date           Author       Notes
12*10465441SEvalZero  * 2008-07-29     Bernard      first version
13*10465441SEvalZero  */
14*10465441SEvalZero 
15*10465441SEvalZero #include <rtthread.h>
16*10465441SEvalZero 
rt_hw_backtrace(rt_uint32_t * fp,rt_uint32_t thread_entry)17*10465441SEvalZero void rt_hw_backtrace(rt_uint32_t *fp, rt_uint32_t thread_entry)
18*10465441SEvalZero {
19*10465441SEvalZero 	/* no implementation */
20*10465441SEvalZero }
21