Fix some bad syscall dispatching log. This change is not testable until these is a tested NuttX kernel build.

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5713 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2013-03-06 19:56:32 +00:00
parent 6feabf0fee
commit 466efbd35c
26 changed files with 1275 additions and 1062 deletions
+7 -1
View File
@@ -147,11 +147,11 @@
#ifndef __ASSEMBLY__
struct xcptcontext
{
#ifndef CONFIG_DISABLE_SIGNALS
/* The following function pointer is non-zero if there
* are pending signals to be processed.
*/
#ifndef CONFIG_DISABLE_SIGNALS
void *sigdeliver; /* Actual type is sig_deliver_t */
/* These are saved copies of LR, PRIMASK, and xPSR used during
@@ -163,6 +163,12 @@ struct xcptcontext
uint32_t saved_xpsr;
#endif
#ifdef CONFIG_NUTTX_KERNEL
/* The following holds the return address from a system call */
uint32_t sysreturn;
#endif
/* Register save area */
uint32_t regs[XCPTCONTEXT_REGS];
+7 -1
View File
@@ -106,11 +106,11 @@
#ifndef __ASSEMBLY__
struct xcptcontext
{
#ifndef CONFIG_DISABLE_SIGNALS
/* The following function pointer is non-zero if there
* are pending signals to be processed.
*/
#ifndef CONFIG_DISABLE_SIGNALS
void *sigdeliver; /* Actual type is sig_deliver_t */
/* These are saved copies of LR, PRIMASK, and xPSR used during
@@ -126,6 +126,12 @@ struct xcptcontext
uint32_t saved_xpsr;
#endif
#ifdef CONFIG_NUTTX_KERNEL
/* The following holds the return address from a system call */
uint32_t sysreturn;
#endif
/* Register save area */
uint32_t regs[XCPTCONTEXT_REGS];