/* * COPYRIGHT (c) 1989-2012. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include "pmacros.h" #include /* thread facilities */ const char rtems_test_name[] = "PSXCLEANUP 1"; /* forward declarations to avoid warnings */ void *POSIX_Init(void *argument); void cleaner(void *arg); void cleaner(void *arg) { puts( "clean was not supposed to run" ); rtems_test_exit(0); } void *POSIX_Init( void *argument ) { TEST_BEGIN(); puts( "Init - pthread_cleanup_push - a routine we will not execute" ); pthread_cleanup_push(cleaner, NULL); puts( "Init - pthread_cleanup_pop - do not execute" ); pthread_cleanup_pop(0); TEST_END(); rtems_test_exit(0); } /* configuration information */ #define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER #define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER #define CONFIGURE_POSIX_INIT_THREAD_TABLE #define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION #define CONFIGURE_MAXIMUM_POSIX_THREADS 1 #define CONFIGURE_INIT #include