samples - Eliminate missing prototype warnings

This commit is contained in:
Joel Sherrill
2012-05-12 11:12:57 -05:00
parent 3c8eda77b9
commit 5f0cd3499c
13 changed files with 65 additions and 124 deletions

View File

@@ -1,16 +1,5 @@
/* Init /**
* * COPYRIGHT (c) 1989-2012.
* This routine is the initialization task for this test program.
* It is called from init_exec and has the responsibility for creating
* and starting the tasks that make up the test. If the time of day
* clock is required for the application, the current time might be
* set by this task.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be
@@ -26,6 +15,9 @@
#include "system.h" #include "system.h"
#include <stdio.h> #include <stdio.h>
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
rtems_task Init( rtems_task Init(
rtems_task_argument argument rtems_task_argument argument
) )

View File

@@ -1,16 +1,5 @@
/* Init /*
* * COPYRIGHT (c) 1989-2012.
* This routine is the initialization task for this test program.
* It is called from init_exec and has the responsibility for creating
* and starting the tasks that make up the test. If the time of day
* clock is required for the application, the current time might be
* set by this task.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be
@@ -27,6 +16,9 @@
#include "tmacros.h" #include "tmacros.h"
#include <stdio.h> #include <stdio.h>
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
#define ARGUMENT 0 #define ARGUMENT 0
rtems_task Init( rtems_task Init(

View File

@@ -1,16 +1,5 @@
/* Init /*
* * COPYRIGHT (c) 1989-2012.
* This routine is the initialization task for this test program.
* It is called from init_exec and has the responsibility for creating
* and starting the tasks that make up the test. If the time of day
* clock is required for the test, it should also be set to a known
* value by this function.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-1997.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may in * The license and distribution terms for this file may in
@@ -33,6 +22,12 @@
#include <rtems/monitor.h> #include <rtems/monitor.h>
#include <rtems/shell.h> #include <rtems/shell.h>
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
#if !BSP_SMALL_MEMORY
static void notification(int fd, int seconds_remaining, void *arg);
#endif
volatile int can_proceed = 1; volatile int can_proceed = 1;
#if !BSP_SMALL_MEMORY #if !BSP_SMALL_MEMORY

View File

@@ -1,16 +1,5 @@
/* Init /*
* * COPYRIGHT (c) 1989-2012.
* This routine is the initialization task for this test program.
* It is called from init_exec and has the responsibility for creating
* and starting the tasks that make up the test. If the time of day
* clock is required for the test, it should also be set to a known
* value by this function.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be

View File

@@ -1,16 +1,5 @@
/* Init /*
* * COPYRIGHT (c) 1989-2012.
* This routine is the initialization task for this test program.
* It is called from init_exec and has the responsibility for creating
* and starting the tasks that make up the test. If the time of day
* clock is required for the test, it should also be set to a known
* value by this function.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be

View File

@@ -1,16 +1,5 @@
/* Init /*
* * COPYRIGHT (c) 1989-2012.
* This routine is the initialization task for this test program.
* It is called from init_exec and has the responsibility for creating
* and starting the tasks that make up the test. If the time of day
* clock is required for the test, it should also be set to a known
* value by this function.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be
@@ -27,6 +16,9 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
rtems_task Init( rtems_task Init(
rtems_task_argument ignored rtems_task_argument ignored
) )

View File

@@ -1,3 +1,9 @@
/*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif

View File

@@ -1,6 +1,11 @@
/* Minimum Size Application Initialization /**
* @file
* *
* COPYRIGHT (c) 1989-2008. * Minimum Size Application Initialization
*/
/*
* COPYRIGHT (c) 1989-2012.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be
@@ -17,6 +22,9 @@
#include <bsp.h> #include <bsp.h>
#include <rtems/score/thread.h> #include <rtems/score/thread.h>
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
rtems_task Init( rtems_task Init(
rtems_task_argument ignored rtems_task_argument ignored
) )

View File

@@ -1,8 +1,11 @@
/* /**
* @file
*
* Nanoseconds accuracy timestamp test * Nanoseconds accuracy timestamp test
*/ */
/* COPYRIGHT (c) 1989-2011. /*
* COPYRIGHT (c) 1989-2012.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be

View File

@@ -1,16 +1,5 @@
/* Init /*
* * COPYRIGHT (c) 1989-2012.
* This routine is the initialization task for this test program.
* It is called from init_exec and has the responsibility for creating
* and starting the tasks that make up the test. If the time of day
* clock is required for the test, it should also be set to a known
* value by this function.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be

View File

@@ -1,8 +1,16 @@
/*
* COPYRIGHT (c) 1989-2012.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@@ -1,16 +1,5 @@
/* Init /*
* * COPYRIGHT (c) 1989-2012.
* This routine is the initialization task for this test program.
* It is called from init_exec and has the responsibility for creating
* and starting the tasks that make up the test. If the time of day
* clock is required for the test, it should also be set to a known
* value by this function.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be

View File

@@ -1,20 +1,9 @@
/* Init /*
* * COPYRIGHT (c) 1989-2012.
* This routine is the initialization task for this test program.
* It is called from init_exec and has the responsibility for creating
* and starting the tasks that make up the test. If the time of day
* clock is required for the test, it should also be set to a known
* value by this function.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-1997.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may in * The license and distribution terms for this file may be
* the file LICENSE in this distribution or at * found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE. * http://www.rtems.com/license/LICENSE.
*/ */