Back to home page

LXR

 
 

    


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

0001 /*
0002  * Copyright (c) 2015 embedded brains GmbH & Co. KG
0003  *
0004  * The license and distribution terms for this file may be
0005  * found in the file LICENSE in this distribution or at
0006  * http://www.rtems.com/license/LICENSE.
0007  */
0008 
0009 #ifdef HAVE_CONFIG_H
0010 #include "config.h"
0011 #endif
0012 
0013 #include "tmacros.h"
0014 
0015 int main(int argc, char **argv);
0016 
0017 const char rtems_test_name[] = "PSXCLEANUP 2";
0018 
0019 static void *POSIX_Init(void *arg)
0020 {
0021   TEST_BEGIN();
0022 
0023   main(0, NULL);
0024 
0025   TEST_END();
0026   rtems_test_exit(0);
0027 }
0028 
0029 #define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
0030 #define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
0031 
0032 #define CONFIGURE_MAXIMUM_POSIX_THREADS 2
0033 #define CONFIGURE_MAXIMUM_POSIX_KEYS 1
0034 #define CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS 1
0035 
0036 #define CONFIGURE_POSIX_INIT_THREAD_TABLE
0037 
0038 #define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
0039 
0040 #define CONFIGURE_INIT
0041 
0042 #include <rtems/confdefs.h>