source: rtems/testsuites/psxtests/psxaio01/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 2010, 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/* functions */
10
11#include <pmacros.h>
12#include <pthread.h>
13#include <errno.h>
14#include <sched.h>
15
16void *POSIX_Init (void *argument);
17
18/* configuration information */
19
20#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
21#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
22
23#define CONFIGURE_MAXIMUM_TASKS             20
24#define CONFIGURE_MAXIMUM_SEMAPHORES        20
25#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES    20
26#define CONFIGURE_MAXIMUM_FILE_DESCRIPTORS 20
27
28#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
29
30#define CONFIGURE_MAXIMUM_POSIX_THREADS        10
31#define CONFIGURE_MAXIMUM_POSIX_KEYS           10
32
33#define CONFIGURE_POSIX_INIT_THREAD_TABLE
34#define CONFIGURE_EXTRA_TASK_STACKS         (10 * RTEMS_MINIMUM_STACK_SIZE)
35#define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE (10 * RTEMS_MINIMUM_STACK_SIZE)
36
37#include <rtems/confdefs.h>
38
39/* global variables */
40TEST_EXTERN pthread_t Init_id;
41
42/* end of include file */
Note: See TracBrowser for help on using the repository browser.