summaryrefslogtreecommitdiff
path: root/nuttx/lib/lib_filesem.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-14 20:51:11 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-14 20:51:11 +0000
commit33d20a1c87eb7cae586cc0d444729eda6c46e723 (patch)
tree8232edf97066c2d2c3afaf3fea3b51ff51f702cb /nuttx/lib/lib_filesem.c
parent6260f872623acfe046f62a728405dbadc2a60c8c (diff)
downloadpx4-nuttx-33d20a1c87eb7cae586cc0d444729eda6c46e723.tar.gz
px4-nuttx-33d20a1c87eb7cae586cc0d444729eda6c46e723.tar.bz2
px4-nuttx-33d20a1c87eb7cae586cc0d444729eda6c46e723.zip
Switching to C99 stdint.h types
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2338 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/lib/lib_filesem.c')
-rw-r--r--nuttx/lib/lib_filesem.c42
1 files changed, 22 insertions, 20 deletions
diff --git a/nuttx/lib/lib_filesem.c b/nuttx/lib/lib_filesem.c
index 0eaecf99f..cea6092dc 100644
--- a/nuttx/lib/lib_filesem.c
+++ b/nuttx/lib/lib_filesem.c
@@ -1,7 +1,7 @@
-/************************************************************
- * lib_filesem.c
+/************************************************************************
+ * lib/lib_filesem.c
*
- * Copyright (C) 2007 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -14,7 +14,7 @@
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
- * 3. Neither the name Gregory Nutt nor the names of its contributors may be
+ * 3. Neither the name NuttX nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -31,37 +31,39 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ************************************************************************/
-/************************************************************
+/************************************************************************
* Included Files
- ************************************************************/
+ ************************************************************************/
#include <nuttx/config.h>
+#include <sys/types.h>
#include <unistd.h>
#include <semaphore.h>
#include <errno.h>
#include <assert.h>
+
#include "lib_internal.h"
#if CONFIG_STDIO_BUFFER_SIZE > 0
-/************************************************************
- * Definitions
- ************************************************************/
+/************************************************************************
+ * Pre-processor Definitions
+ ************************************************************************/
-/************************************************************
+/************************************************************************
* Private Data
- ************************************************************/
+ ************************************************************************/
-/************************************************************
+/************************************************************************
* Global Functions
- ************************************************************/
+ ************************************************************************/
-/************************************************************
+/************************************************************************
* lib_sem_initialize
- ************************************************************/
+ ************************************************************************/
void lib_sem_initialize(FAR struct file_struct *stream)
{
@@ -75,9 +77,9 @@ void lib_sem_initialize(FAR struct file_struct *stream)
stream->fs_counts = 0;
}
-/************************************************************
+/************************************************************************
* lib_take_semaphore
- ************************************************************/
+ ************************************************************************/
void lib_take_semaphore(FAR struct file_struct *stream)
{
@@ -111,9 +113,9 @@ void lib_take_semaphore(FAR struct file_struct *stream)
}
}
-/************************************************************
+/************************************************************************
* lib_give_semaphore
- ************************************************************/
+ ************************************************************************/
void lib_give_semaphore(FAR struct file_struct *stream)
{