From 59f367c060c408a9c9f2ee6db3a4fd498c4a2724 Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 14 Dec 2009 18:39:29 +0000 Subject: Switching to C99 stdint.h types git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2336 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/sched/mq_findnamed.c | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) (limited to 'nuttx/sched/mq_findnamed.c') diff --git a/nuttx/sched/mq_findnamed.c b/nuttx/sched/mq_findnamed.c index a74caba7b..851052e28 100644 --- a/nuttx/sched/mq_findnamed.c +++ b/nuttx/sched/mq_findnamed.c @@ -1,7 +1,7 @@ -/************************************************************ - * mq_findnamed.c +/************************************************************************ + * sched/mq_findnamed.c * - * Copyright (C) 2007 Gregory Nutt. All rights reserved. + * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -31,41 +31,42 @@ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - ************************************************************/ + ************************************************************************/ -/************************************************************ +/************************************************************************ * Included Files - ************************************************************/ + ************************************************************************/ + +#include -#include /* uint32, etc. */ #include #include "mq_internal.h" -/************************************************************ +/************************************************************************ * Definitions - ************************************************************/ + ************************************************************************/ -/************************************************************ +/************************************************************************ * Private Type Declarations - ************************************************************/ + ************************************************************************/ -/************************************************************ +/************************************************************************ * Global Variables - ************************************************************/ + ************************************************************************/ -/************************************************************ +/************************************************************************ * Private Variables - ************************************************************/ + ************************************************************************/ -/************************************************************ +/************************************************************************ * Private Functions - ************************************************************/ + ************************************************************************/ -/************************************************************ +/************************************************************************ * Public Functions - ************************************************************/ + ************************************************************************/ -/************************************************************ +/************************************************************************ * Function: mq_findnamed * * Description: @@ -79,7 +80,7 @@ * A reference to the matching named message queue * structure (or NULL if none was found). * - ************************************************************/ + ************************************************************************/ FAR msgq_t *mq_findnamed(const char *mq_name) { -- cgit v1.2.3