summaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-02-14 01:11:14 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-02-14 01:11:14 +0000
commit17206f29c6bd2d9e3e67554127d20722bc90a017 (patch)
tree2843fb42019aab407d22ed95ea17ee2cf7c5cba7 /nuttx/include
parentc198c0206fa6d459d2c16713be7ef87f4eee627f (diff)
downloadpx4-nuttx-17206f29c6bd2d9e3e67554127d20722bc90a017.tar.gz
px4-nuttx-17206f29c6bd2d9e3e67554127d20722bc90a017.tar.bz2
px4-nuttx-17206f29c6bd2d9e3e67554127d20722bc90a017.zip
Add FAR to sigdeliver_t
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1493 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/nuttx/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/include/nuttx/sched.h b/nuttx/include/nuttx/sched.h
index 87cdc8127..5f0b055e8 100644
--- a/nuttx/include/nuttx/sched.h
+++ b/nuttx/include/nuttx/sched.h
@@ -125,7 +125,7 @@ typedef enum tstate_e tstate_t;
/* The following is the form of a thread start-up function */
-typedef void (*start_t)(void);
+typedef FAR void (*start_t)(void);
/* This is the entry point into the main thread of the task
* or into a created pthread within the task.