9
0
Fork 0

Add FAR to pointer

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@1353 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2008-11-29 18:15:36 +00:00
parent f78d8e3f7c
commit ecba576e1a
1 changed files with 2 additions and 2 deletions

View File

@ -119,8 +119,8 @@ typedef uint32 sigset_t; /* Bit set of 32 signals */
union sigval
{
int sival_int; /* Integer value */
void *sival_ptr; /* Pointer value */
int sival_int; /* Integer value */
FAR void *sival_ptr; /* Pointer value */
};
/* This structure contains elements that define a queue signal. The following is