2008-02-22 Joel Sherrill <joel.sherrill@oarcorp.com>

* sp09/screen01.c: Correct test.
	* sp09/screen14.c: Update copyright.
	* sp28/init.c: Correct end of test messages.
This commit is contained in:
Joel Sherrill
2008-02-22 19:35:14 +00:00
parent 3f4dce3152
commit 5afa393ed5
4 changed files with 12 additions and 10 deletions

View File

@@ -18,6 +18,7 @@ rtems_task Init(rtems_task_argument argument);
#define CONFIGURE_MAXIMUM_TASKS 4
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_MICROSECONDS_PER_TICK 52429
#define CONFIGURE_INIT_TASK_STACK_SIZE (4*RTEMS_MINIMUM_STACK_SIZE)
#define CONFIGURE_MICROSECONDS_INIT
@@ -214,18 +215,17 @@ void test_multiple_taskvars(void)
}
#define MAX_VARS 4096
void *Pointers[MAX_VARS];
void test_out_of_memory(void)
{
int i;
int max;
void *wkspace_base;
void **base;
rtems_status_code sc;
int ran_out = 0;
void **base;
wkspace_base = rtems_configuration_get_work_space_start();
base = (void **)wkspace_base;
base = Pointers;
for (i=0 ; i<MAX_VARS ; i++ ) {
sc = rtems_task_variable_add(RTEMS_SELF, &base[i], NULL);