source: rtems/testsuites/psxtests/psxaio03/system.h @ 8b8c068

5
Last change on this file since 8b8c068 was 8b8c068, checked in by Sebastian Huber <sebastian.huber@…>, on 03/31/20 at 13:19:46

testsuites: Remove CONFIGURE_MALLOC_STATISTICS

This configuration option is obsolete since 2014.

Update #1367.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1 /*
2  * Copyright 2011, Alin Rus <alin.codejunkie@gmail.com>
3  *
4  * The license and distribution terms for this file may be
5  * found in the file LICENSE in this distribution or at
6  * http://www.rtems.org/license/LICENSE.
7  *
8  */
9
10/* functions */
11
12#include <pmacros.h>
13#include <pthread.h>
14#include <errno.h>
15#include <sched.h>
16
17void *POSIX_Init (void *argument);
18
19/* configuration information */
20
21#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
22#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
23
24#define CONFIGURE_MAXIMUM_TASKS             10
25#define CONFIGURE_MAXIMUM_SEMAPHORES        10
26#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES    10
27#define CONFIGURE_MAXIMUM_FILE_DESCRIPTORS 10
28
29#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
30
31#define CONFIGURE_MAXIMUM_POSIX_THREADS        10
32#define CONFIGURE_MAXIMUM_POSIX_KEYS           10
33
34#define CONFIGURE_POSIX_INIT_THREAD_TABLE
35#define CONFIGURE_EXTRA_TASK_STACKS            (5 * RTEMS_MINIMUM_STACK_SIZE)
36#define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE (5 * RTEMS_MINIMUM_STACK_SIZE)
37
38#include <rtems/confdefs.h>
39
40/* global variables */
41TEST_EXTERN pthread_t Init_id;
42
43/* end of include file */
Note: See TracBrowser for help on using the repository browser.