summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/common/up_vfork.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/arm/src/common/up_vfork.c')
-rw-r--r--nuttx/arch/arm/src/common/up_vfork.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/common/up_vfork.c b/nuttx/arch/arm/src/common/up_vfork.c
index a6fe6c873..6340cb3b8 100644
--- a/nuttx/arch/arm/src/common/up_vfork.c
+++ b/nuttx/arch/arm/src/common/up_vfork.c
@@ -134,11 +134,12 @@ pid_t up_vfork(const struct vfork_s *context)
uint32_t stackutil;
int ret;
- svdbg("r4:%08x r5:%08x r6:%08x r7:%08x\n",
+ svdbg("vfork context [%p]:\n", context);
+ svdbg(" r4:%08x r5:%08x r6:%08x r7:%08x\n",
context->r4, context->r5, context->r6, context->r7);
- svdbg("r8:%08x r9:%08x r10:%08x\n",
+ svdbg(" r8:%08x r9:%08x r10:%08x\n",
context->r8, context->r9, context->r10);
- svdbg("fp:%08x sp:%08x lr:%08x\n",
+ svdbg(" fp:%08x sp:%08x lr:%08x\n",
context->fp, context->sp, context->lr);
/* Allocate and initialize a TCB for the child task. */