aboutsummaryrefslogtreecommitdiff
path: root/nuttx/mm/mm_zalloc.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-14 23:31:12 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-14 23:31:12 +0000
commit183aa2858c3bdabafb09943b00760c4831f588e1 (patch)
tree27bc6c7bda8a5889685481fab926aa45950651ea /nuttx/mm/mm_zalloc.c
parent7c6185ae4bfefb70c17e75219db7269c03c7fd79 (diff)
downloadpx4-firmware-183aa2858c3bdabafb09943b00760c4831f588e1.tar.gz
px4-firmware-183aa2858c3bdabafb09943b00760c4831f588e1.tar.bz2
px4-firmware-183aa2858c3bdabafb09943b00760c4831f588e1.zip
mm/ file clean-up
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4943 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/mm/mm_zalloc.c')
-rw-r--r--nuttx/mm/mm_zalloc.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/nuttx/mm/mm_zalloc.c b/nuttx/mm/mm_zalloc.c
index 97f1079a6..075777d0c 100644
--- a/nuttx/mm/mm_zalloc.c
+++ b/nuttx/mm/mm_zalloc.c
@@ -1,8 +1,8 @@
-/************************************************************************
+/****************************************************************************
* mm/mm_zalloc.c
*
* Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -31,30 +31,30 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************************/
+ ****************************************************************************/
-/************************************************************************
+/****************************************************************************
* Included Files
- ************************************************************************/
+ ****************************************************************************/
#include "mm_environment.h"
#include "mm_internal.h"
-/************************************************************************
+/****************************************************************************
* Pre-processor Definitions
- ************************************************************************/
+ ****************************************************************************/
-/************************************************************************
- * Public: Functions
- ************************************************************************/
+/****************************************************************************
+ * Public Functions
+ ****************************************************************************/
-/************************************************************************
+/****************************************************************************
* Name: zalloc
*
* Description:
* zalloc calls malloc, then zeroes out the allocated chunk.
*
- ************************************************************************/
+ ****************************************************************************/
FAR void *zalloc(size_t size)
{