source: rtems/testsuites/sptests/sp13/system.h @ 7294bc97

4.104.114.95
Last change on this file since 7294bc97 was 7294bc97, checked in by Joel Sherrill <joel.sherrill@…>, on 11/06/07 at 20:22:49

2007-11-06 Joel Sherrill <joel.sherrill@…>

  • sp13/system.h: We need 32K of message buffer memory not 32 bytes.
  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[ac7d5ef0]1/*  system.h
2 *
3 *  This include file contains information that is included in every
4 *  function in the test set.
5 *
[7294bc97]6 *  COPYRIGHT (c) 1989-20007.
[ac7d5ef0]7 *  On-Line Applications Research Corporation (OAR).
8 *
[98e4ebf5]9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[d2b93bfd]11 *  http://www.rtems.com/license/LICENSE.
[ac7d5ef0]12 *
[3235ad9]13 *  $Id$
[ac7d5ef0]14 */
15
[4b374f36]16#include <tmacros.h>
[ac7d5ef0]17
[3a4ae6c]18/* functions */
[ac7d5ef0]19
[3a4ae6c]20rtems_task Init(
21  rtems_task_argument argument
22);
[1b4f2b30]23
[3a4ae6c]24void Fill_buffer(
25  char  source[],
26  long *buffer
27);
[1b4f2b30]28
[3a4ae6c]29void Put_buffer(
30  long *buffer
31);
[1b4f2b30]32
[3a4ae6c]33rtems_task Task_1(
34  rtems_task_argument argument
35);
[1b4f2b30]36
[3a4ae6c]37rtems_task Task_2(
38  rtems_task_argument argument
39);
[1b4f2b30]40
[3a4ae6c]41rtems_task Task_3(
42  rtems_task_argument argument
43);
[ac7d5ef0]44
[3a4ae6c]45/* configuration information */
[ac7d5ef0]46
[df49c60]47#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
48#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
[3a4ae6c]49
[df49c60]50#define CONFIGURE_MAXIMUM_TASKS               4
[3a4ae6c]51#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES     10
52#define CONFIGURE_TICKS_PER_TIMESLICE       100
53
[be1c11ed]54#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
55
[7294bc97]56#define CONFIGURE_MESSAGE_BUFFER_MEMORY     (32 * 1024)
[328aa64c]57#define CONFIGURE_EXTRA_TASK_STACKS         (3 * RTEMS_MINIMUM_STACK_SIZE)
[9a993ed5]58
[e8064503]59#include <rtems/confdefs.h>
[3a4ae6c]60
61/* global variables */
62
63TEST_EXTERN rtems_id   Task_id[ 4 ];         /* array of task ids */
64TEST_EXTERN rtems_name Task_name[ 4 ];       /* array of task names */
65
66TEST_EXTERN rtems_id   Queue_id[ 4 ];        /* array of queue ids */
67TEST_EXTERN rtems_name Queue_name[ 4 ];      /* array of queue names */
[ac7d5ef0]68
[a841314]69/* test configuration */
70
71#define MESSAGE_SIZE (sizeof(long) * 4)  /* must be multiple of sizeof(long) */
72
[ac7d5ef0]73/* end of include file */
Note: See TracBrowser for help on using the repository browser.