forked from Imagelibrary/rtems
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
55 lines
1.7 KiB
C
55 lines
1.7 KiB
C
/* system.h
|
|
*
|
|
* This include file contains information that is included in every
|
|
* function in the test set.
|
|
*
|
|
* Copyright (C) 2010 OKTET Labs, St.-Petersburg, Russia
|
|
* Author: Oleg Kravtsov <Oleg.Kravtsov@oktetlabs.ru>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <rtems.h>
|
|
#include "rtems/blkdev.h"
|
|
|
|
rtems_task Init(
|
|
rtems_task_argument argument
|
|
);
|
|
|
|
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
|
|
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
|
|
|
|
#define CONFIGURE_MAXIMUM_TASKS 28
|
|
#define CONFIGURE_MAXIMUM_TIMERS 10
|
|
#define CONFIGURE_MAXIMUM_SEMAPHORES 20
|
|
#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 10
|
|
#define CONFIGURE_MAXIMUM_PARTITIONS 1
|
|
#define CONFIGURE_MAXIMUM_REGIONS 1
|
|
#define CONFIGURE_MAXIMUM_PERIODS 1
|
|
#define CONFIGURE_MAXIMUM_USER_EXTENSIONS 0
|
|
#define CONFIGURE_TICKS_PER_TIMESLICE 100
|
|
|
|
#define CONFIGURE_APPLICATION_NEEDS_LIBBLOCK
|
|
#define CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS 2
|
|
#define CONFIGURE_BDBUF_CACHE_MEMORY_SIZE (512)
|
|
#define CONFIGURE_BDBUF_BUFFER_MIN_SIZE (512)
|
|
#define CONFIGURE_BDBUF_BUFFER_MAX_SIZE (512)
|
|
|
|
/*
|
|
* Define it here in order to be able to register
|
|
* test driver after RTEMS initialization phase
|
|
* (on test start-up).
|
|
*/
|
|
#define CONFIGURE_MAXIMUM_DRIVERS 5
|
|
|
|
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
|
|
#define CONFIGURE_INIT_TASK_STACK_SIZE (4 * RTEMS_MINIMUM_STACK_SIZE)
|
|
|
|
#define CONFIGURE_EXTRA_TASK_STACKS (13 * RTEMS_MINIMUM_STACK_SIZE)
|
|
|
|
#include <rtems/confdefs.h>
|
|
|
|
/* end of include file */
|