summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-20 00:53:49 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-20 00:53:49 +0000
commit3e251944675bb1731344ff92e38043806c015a78 (patch)
treec20796f0ef806a6d15ba87d45dbe2898cd9fe531
parentb48edb8fa7684838fa1900cc9f51ca4b730ad78f (diff)
downloadpx4-nuttx-3e251944675bb1731344ff92e38043806c015a78.tar.gz
px4-nuttx-3e251944675bb1731344ff92e38043806c015a78.tar.bz2
px4-nuttx-3e251944675bb1731344ff92e38043806c015a78.zip
This should have been part of the 6.18 release but was lost somehow
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4752 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/graphics/nxtk/nxtk_block.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/nuttx/graphics/nxtk/nxtk_block.c b/nuttx/graphics/nxtk/nxtk_block.c
index d011525fe..11baf7f4f 100644
--- a/nuttx/graphics/nxtk/nxtk_block.c
+++ b/nuttx/graphics/nxtk/nxtk_block.c
@@ -93,15 +93,17 @@
*
* Input Parameters:
* hfwnd - The window to be blocked
+ * arg - An argument that will accompany the block messages (This is arg2
+ * in the blocked callback).
*
* Return:
* OK on success; ERROR on failure with errno set appropriately
*
****************************************************************************/
-int nxtk_block(NXTKWINDOW hfwnd)
+int nxtk_block(NXTKWINDOW hfwnd, FAR void *arg)
{
- return nx_block((NXWINDOW)hfwnd);
+ return nx_block((NXWINDOW)hfwnd, arg);
}
#endif /* CONFIG_NX_MULTIUSER */