Misoc LM32: Make naming consistent, lm32_sigdeliver vs. up_sigdeliver.

This commit is contained in:
Gregory Nutt 2016-11-28 11:18:07 -06:00
parent b568bfa813
commit 1f9e3ae5f1
2 changed files with 4 additions and 4 deletions

View file

@ -154,7 +154,7 @@ void up_schedule_sigaction(struct tcb_s *tcb, sig_deliver_t sigdeliver)
* disabled
*/
g_current_regs[REG_EPC] = (uint32_t)up_sigdeliver;
g_current_regs[REG_EPC] = (uint32_t)lm32_sigdeliver;
g_current_regs[REG_INT_CTX] = 0;
@ -191,7 +191,7 @@ void up_schedule_sigaction(struct tcb_s *tcb, sig_deliver_t sigdeliver)
* disabled
*/
tcb->xcp.regs[REG_EPC] = (uint32_t)up_sigdeliver;
tcb->xcp.regs[REG_EPC] = (uint32_t)lm32_sigdeliver;
tcb->xcp.regs[REG_INT_CTX] = 0;
sinfo("PC/STATUS Saved: %08x/%08x New: %08x/%08x\n",

View file

@ -59,7 +59,7 @@
****************************************************************************/
/****************************************************************************
* Name: up_sigdeliver
* Name: lm32_sigdeliver
*
* Description:
* This is the a signal handling trampoline. When a signal action was
@ -68,7 +68,7 @@
*
****************************************************************************/
void up_sigdeliver(void)
void lm32_sigdeliver(void)
{
struct tcb_s *rtcb = this_task();
uint32_t regs[XCPTCONTEXT_REGS];