forked from Archive/PX4-Autopilot
This should have been part of the 6.18 release but was lost somehow
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4752 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
parent
232ce4e980
commit
1c59d3c765
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue