Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:36

0001 /* SPDX-License-Identifier: BSD-2-Clause */
0002 
0003  /*
0004   * Copyright 2011, Alin Rus <alin.codejunkie@gmail.com>
0005   *
0006   * The license and distribution terms for this file may be
0007   * found in the file LICENSE in this distribution or at
0008   * http://www.rtems.org/license/LICENSE.
0009   *
0010   */
0011 
0012 /* functions */
0013 
0014 #include <pmacros.h>
0015 #include <pthread.h>
0016 #include <errno.h>
0017 #include <sched.h>
0018 
0019 void *POSIX_Init( void *argument );
0020 
0021 /* configuration information */
0022 
0023 #define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
0024 #define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
0025 
0026 #define CONFIGURE_MAXIMUM_TASKS             10
0027 #define CONFIGURE_MAXIMUM_SEMAPHORES        10
0028 #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES    10
0029 #define CONFIGURE_MAXIMUM_FILE_DESCRIPTORS  10
0030 
0031 #define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
0032 
0033 #define CONFIGURE_MAXIMUM_POSIX_THREADS        10
0034 #define CONFIGURE_MAXIMUM_POSIX_KEYS           10
0035 
0036 #define CONFIGURE_POSIX_INIT_THREAD_TABLE
0037 #define CONFIGURE_EXTRA_TASK_STACKS            ( 5 * RTEMS_MINIMUM_STACK_SIZE )
0038 #define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE ( 5 * RTEMS_MINIMUM_STACK_SIZE )
0039 
0040 #include <rtems/confdefs.h>
0041 
0042 /* global variables */
0043 TEST_EXTERN pthread_t Init_id;
0044 
0045 /* end of include file */