summaryrefslogtreecommitdiff
path: root/nuttx/configs/ea3131/src/up_fillpage.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-08-31 02:21:12 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-08-31 02:21:12 +0000
commita66cf9d6e86bc95a25e21e746000e602e6f1ecbc (patch)
tree21c35973ac5cd59ec676a68423140c3a42ce4231 /nuttx/configs/ea3131/src/up_fillpage.c
parente3dbd274922d727842086ad42df644308dfc668d (diff)
downloadpx4-nuttx-a66cf9d6e86bc95a25e21e746000e602e6f1ecbc.tar.gz
px4-nuttx-a66cf9d6e86bc95a25e21e746000e602e6f1ecbc.tar.bz2
px4-nuttx-a66cf9d6e86bc95a25e21e746000e602e6f1ecbc.zip
Add paging debug instrumentation
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2899 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/ea3131/src/up_fillpage.c')
-rwxr-xr-xnuttx/configs/ea3131/src/up_fillpage.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/nuttx/configs/ea3131/src/up_fillpage.c b/nuttx/configs/ea3131/src/up_fillpage.c
index be355fffe..b9a97f684 100755
--- a/nuttx/configs/ea3131/src/up_fillpage.c
+++ b/nuttx/configs/ea3131/src/up_fillpage.c
@@ -112,12 +112,14 @@
#ifdef CONFIG_PAGING_BLOCKINGFILL
int up_fillpage(FAR _TCB *tcb, FAR void *vpage)
{
+ pglldbg("TCB: %p vpage: %d far: %08x\n", tcb, vpage, tcb->xcp.far);
# warning "Not implemented"
return -ENOSYS;
}
#else
int up_fillpage(FAR _TCB *tcb, FAR void *vpage, up_pgcallback_t pg_callback)
{
+ pglldbg("TCB: %p vpage: %d far: %08x\n", tcb, vpage, tcb->xcp.far);
# warning "Not implemented"
return -ENOSYS;
}