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*10465441SEvalZerovoid rt_hw_backtrace(rt_uint32_t *fp, rt_uint32_t thread_entry) 18*10465441SEvalZero { 19*10465441SEvalZero /* no implementation */ 20*10465441SEvalZero } 21