source: rtems/testsuites/psxtests/psxaio02/system.h @ 9f6ea32

4.115
Last change on this file since 9f6ea32 was 9f6ea32, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:03:34

psxaio01/psxaio02 - Formatting corrections

The file header was moved over one space. These two were the only
files in the testsuite which did this.

  • Property mode set to 100644
File size: 1.3 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.com/license/LICENSE.
7 *
8 * $Id$
9 */
10
11/* functions */
12
13#include <pmacros.h>
14#include <pthread.h>
15#include <errno.h>
16#include <sched.h>
17
18void *POSIX_Init (void *argument);
19
20/* configuration information */
21
22#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
23#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
24#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
25
26#define CONFIGURE_MAXIMUM_TASKS             20
27#define CONFIGURE_MAXIMUM_SEMAPHORES        20
28#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES    20
29#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 20
30
31#define CONFIGURE_MAXIMUM_POSIX_THREADS        10
32#define CONFIGURE_MAXIMUM_POSIX_MUTEXES        10
33#define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES     10
34#define CONFIGURE_MAXIMUM_POSIX_KEYS           10
35
36#define CONFIGURE_POSIX_INIT_THREAD_TABLE
37#define CONFIGURE_EXTRA_TASK_STACKS         (10 * RTEMS_MINIMUM_STACK_SIZE)
38#define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE (10 * RTEMS_MINIMUM_STACK_SIZE)
39
40#define CONFIGURE_MALLOC_STATISTICS
41
42#include <rtems/confdefs.h>
43
44/* global variables */
45TEST_EXTERN pthread_t Init_id;
46
47/* end of include file */
Note: See TracBrowser for help on using the repository browser.