summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_attrgetstacksize.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-30 21:59:12 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-30 21:59:12 +0000
commit6706284921ae317e32f5e391d401f8eaa3d6e3a5 (patch)
tree24bf36306b92e1b6f6b01c4acdec3e7abeae9f2c /nuttx/sched/pthread_attrgetstacksize.c
parent013eef130f1bc2cab1e3f4022d8498fb98bb29bf (diff)
downloadpx4-nuttx-6706284921ae317e32f5e391d401f8eaa3d6e3a5.tar.gz
px4-nuttx-6706284921ae317e32f5e391d401f8eaa3d6e3a5.tar.bz2
px4-nuttx-6706284921ae317e32f5e391d401f8eaa3d6e3a5.zip
Fix z16f addressing issues
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@592 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/pthread_attrgetstacksize.c')
-rw-r--r--nuttx/sched/pthread_attrgetstacksize.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/nuttx/sched/pthread_attrgetstacksize.c b/nuttx/sched/pthread_attrgetstacksize.c
index d329f66e4..c5597d2a4 100644
--- a/nuttx/sched/pthread_attrgetstacksize.c
+++ b/nuttx/sched/pthread_attrgetstacksize.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* pthread_attrgetstacksize.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
@@ -31,11 +31,11 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <sys/types.h>
#include <pthread.h>
@@ -44,31 +44,31 @@
#include <errno.h>
#include "pthread_internal.h"
-/************************************************************
+/****************************************************************************
* Definitions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Private Type Declarations
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Global Variables
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Private Variables
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Private Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Function: pthread_attr_getstacksize
*
* Description:
@@ -82,9 +82,9 @@
*
* Assumptions:
*
- ************************************************************/
+ ****************************************************************************/
-int pthread_attr_getstacksize(pthread_attr_t *attr, long *stacksize)
+int pthread_attr_getstacksize(FAR pthread_attr_t *attr, FAR long *stacksize)
{
int ret;