Debug NSH on z80sim

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@474 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2007-12-31 23:52:53 +00:00
parent 5ba7355ed9
commit e04cbc626a
3 changed files with 7 additions and 2 deletions

View File

@ -114,9 +114,13 @@ static void _up_dumponexit(FAR _TCB *tcb, FAR void *arg)
struct file_struct *filep = &tcb->streams->sl_streams[i];
if (filep->fs_filedes >= 0)
{
#if CONFIG_STDIO_BUFFER_SIZE > 0
lldbg(" fd=%d nbytes=%d\n",
filep->fs_filedes,
filep->fs_bufpos - filep->fs_bufstart);
#else
lldbg(" fd=%d\n", filep->fs_filedes);
#endif
}
}
}

View File

@ -56,7 +56,7 @@
#undef CONFIG_SUPPRESS_TIMER_INTS /* No timer */
#undef CONFIG_SUPPRESS_SERIAL_INTS /* Console will poll */
#undef CONFIG_SUPPRESS_UART_CONFIG /* Do not reconfig UART */
#define CONFIG_DUMP_ON_EXIT 1 /* Dump task state on exit */
#undef CONFIG_DUMP_ON_EXIT /* Dump task state on exit */
/* Macros for portability */
@ -112,6 +112,7 @@ extern FAR chipreg_t *up_decodeirq(uint8 rstno, FAR chipreg_t *regs);
extern void up_irqinitialize(void);
extern int up_timerisr(int irq, FAR chipreg_t *regs);
extern void up_lowputc(char ch) __naked;
extern char up_lowgetc(void) __naked;
/* Defined in up_doirq.c */

View File

@ -140,4 +140,4 @@ void up_sigdeliver(void)
#endif
}
#endif /* CONFIG_DISABLE_SIGNALS */
#endif /* CONFIG_DISABLE_SIGNALS */