source: rtems/testsuites/psxtests/psxaio03/system.h @ 053974f8

4.115
Last change on this file since 053974f8 was 053974f8, checked in by Sebastian Huber <sebastian.huber@…>, on 10/12/11 at 09:11:47

2011-10-12 Sebastian Huber <sebastian.huber@…>

  • psxaio01/system.h, psxaio02/system.h, psxaio03/system.h: Do not use the stack checker.
  • Property mode set to 100644
File size: 1.3 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.com/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_CONSOLE_DRIVER
22#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
23#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
24
25#define CONFIGURE_MAXIMUM_TASKS             20
26#define CONFIGURE_MAXIMUM_SEMAPHORES        20
27#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES    20
28#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 20
29
30#define CONFIGURE_MAXIMUM_POSIX_THREADS        30
31#define CONFIGURE_MAXIMUM_POSIX_MUTEXES        30
32#define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES     30
33#define CONFIGURE_MAXIMUM_POSIX_KEYS           30
34
35#define CONFIGURE_POSIX_INIT_THREAD_TABLE
36#define CONFIGURE_EXTRA_TASK_STACKS         (10 * RTEMS_MINIMUM_STACK_SIZE)
37#define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE (10 * RTEMS_MINIMUM_STACK_SIZE)
38
39#define CONFIGURE_MALLOC_STATISTICS
40
41#include <rtems/confdefs.h>
42
43/* global variables */
44TEST_EXTERN pthread_t Init_id;
45
46/* end of include file */
Note: See TracBrowser for help on using the repository browser.