summaryrefslogtreecommitdiff
path: root/nuttx/sched/sem_internal.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-02-27 21:17:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-02-27 21:17:21 +0000
commit148cde5e982950ad5836fa96baa466de842e1c14 (patch)
treebf737b367b91c5da81345eb21016b07400d7a72f /nuttx/sched/sem_internal.h
parentf6b81a790c28d7d36d9de33810df5270c1ebbfd7 (diff)
downloadpx4-nuttx-148cde5e982950ad5836fa96baa466de842e1c14.tar.gz
px4-nuttx-148cde5e982950ad5836fa96baa466de842e1c14.tar.bz2
px4-nuttx-148cde5e982950ad5836fa96baa466de842e1c14.zip
Finally, a clean SDCC compile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@20 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/sem_internal.h')
-rw-r--r--nuttx/sched/sem_internal.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/nuttx/sched/sem_internal.h b/nuttx/sched/sem_internal.h
index 460b358fc..9908d6e4c 100644
--- a/nuttx/sched/sem_internal.h
+++ b/nuttx/sched/sem_internal.h
@@ -58,12 +58,12 @@
struct nsem_s
{
- struct nsem_s *flink; /* Forward link */
- struct nsem_s *blink; /* Backward link */
- uint16 nconnect; /* Number of connections to semaphore */
- char *name; /* Semaphore name (NULL if un-named) */
- boolean unlinked; /* TRUE if the semaphore has been unlinked */
- sem_t sem; /* The semaphore itself */
+ FAR struct nsem_s *flink; /* Forward link */
+ FAR struct nsem_s *blink; /* Backward link */
+ uint16 nconnect; /* Number of connections to semaphore */
+ FAR char *name; /* Semaphore name (NULL if un-named) */
+ boolean unlinked; /* TRUE if the semaphore has been unlinked */
+ sem_t sem; /* The semaphore itself */
};
typedef struct nsem_s nsem_t;
@@ -87,8 +87,8 @@ extern "C" {
#endif
EXTERN void weak_function sem_initialize(void);
-EXTERN void sem_waitirq(_TCB *wtcb);
-EXTERN nsem_t *sem_findnamed(const char *name);
+EXTERN void sem_waitirq(FAR _TCB *wtcb);
+EXTERN FAR nsem_t *sem_findnamed(const char *name);
#undef EXTERN
#ifdef __cplusplus