From 364e4ac1003216bb40a233eb9c4e702a05e9325d Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 14 Feb 2009 01:11:14 +0000 Subject: [PATCH] Add FAR to sigdeliver_t git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1493 42af7a65-404d-4744-a932-0658087f49c3 --- include/nuttx/sched.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nuttx/sched.h b/include/nuttx/sched.h index 87cdc8127e..5f0b055e8f 100644 --- a/include/nuttx/sched.h +++ b/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.