Files
rtems/testsuites/sptests/sp48/init.c
Joel Sherrill b84f1fdc0d 2009-05-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp04/system.h, sp04/task1.c, sp04/tswitch.c, sp07/init.c,
	sp12/init.c, sp13/putbuff.c, sp13/system.h, sp13/task1.c,
	sp15/init.c, sp16/system.h, sp19/fptask.c, sp25/system.h,
	sp26/task1.c, sp27/init.c, sp28/init.c, sp29/init.c, sp31/task1.c,
	sp33/init.c, sp34/changepri.c, sp35/priinv.c, sp37/init.c,
	sp38/init.c, sp39/init.c, sp41/init.c, sp42/init.c, sp43/init.c,
	sp44/init.c, sp45/init.c, sp46/init.c, sp47/init.c, sp48/init.c,
	spfatal03/testcase.h, spfatal05/testcase.h, spfatal06/testcase.h,
	spfatal_support/system.h, spobjgetnext/init.c, spsize/getint.c,
	spsize/size.c: Fix warnings.
2009-05-10 14:39:46 +00:00

94 lines
2.3 KiB
C

/*
* Verify creation of semaphores with unlimited attribute works.
*
* COPYRIGHT (c) 1989-2009.
* 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.com/license/LICENSE.
*
* $Id$
*/
#include <tmacros.h>
#include <rtems/libcsupport.h>
rtems_task Init(rtems_task_argument ignored);
#define MAX 5000
rtems_id Semaphores[MAX];
rtems_task Init(rtems_task_argument ignored)
{
rtems_status_code sc;
int i;
int created;
puts( "\n\n*** TEST 48 ***" );
printf( "Largest C program heap block available: %d\n", malloc_free_space() );
for (i=0 ; i<MAX ; i++ ) {
sc = rtems_semaphore_create(
rtems_build_name('s', 'e', 'm', ' '),
1,
RTEMS_DEFAULT_ATTRIBUTES,
0,
&Semaphores[i]
);
/* printf("Creating %i id=0x%08x\n", i, Semaphores[i]); */
if (sc == RTEMS_TOO_MANY) {
printf("We run out at %i!\n", i);
break;
}
if (sc != RTEMS_SUCCESSFUL) {
printf("FAILED creating at %i\n", i);
directive_failed( sc, "rtems_semaphore_create " );
rtems_test_exit( 0 );
}
}
created = i;
if ( created == MAX )
puts( "Created all semaphores allowed in this test" );
printf( "%d semaphores created\n", i );
printf( "Largest C program heap block available: %d\n", malloc_free_space() );
for ( i-- ; i ; i-- ) {
sc = rtems_semaphore_delete( Semaphores[i] );
if (sc != RTEMS_SUCCESSFUL) {
printf("FAILED deleting at %i\n", i);
directive_failed( sc, "rtems_semaphore_delete " );
rtems_test_exit( 0 );
}
}
printf( "%d semaphores successfully deleted\n", created );
printf( "Largest C program heap block available: %d\n", malloc_free_space() );
puts( "*** END OF TEST 48 ***" );
rtems_test_exit( 0 );
}
/* configuration stuff */
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_MAXIMUM_SEMAPHORES rtems_resource_unlimited(5)
#if 1
#define CONFIGURE_UNIFIED_WORK_AREAS
#else
#define CONFIGURE_MEMORY_OVERHEAD 1024
#endif
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM
#define CONFIGURE_INIT
#include <rtems/confdefs.h>