Changeset f59df6b2 in rtems
- Timestamp:
- 11/02/99 15:19:43 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a49a7f3d
- Parents:
- dee8a51
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/samples/unlimited/init.c
rdee8a51 rf59df6b2 91 91 { 92 92 printf(" %s : signal task %08x to delete, ", who, task_id[task]); 93 fflush(stdout); 93 94 rtems_event_send(task_id[task], 1); 94 95 task_id[task] = 0; -
c/src/tests/samples/unlimited/system.h
rdee8a51 rf59df6b2 16 16 17 17 #include <rtems.h> 18 19 #define TASK_ALLOCATION_SIZE (5)20 #define CONFIGURE_MAXIMUM_TASKS rtems_resource_unlimited(TASK_ALLOCATION_SIZE)21 18 22 19 #include <tmacros.h> … … 50 47 51 48 #define CONFIGURE_RTEMS_INIT_TASKS_TABLE 49 50 #define TASK_ALLOCATION_SIZE (5) 51 #define CONFIGURE_MAXIMUM_TASKS rtems_resource_unlimited(TASK_ALLOCATION_SIZE) 52 #define CONFIGURE_EXTRA_TASK_STACKS (62 * RTEMS_MINIMUM_STACK_SIZE) 53 52 54 53 55 #include <confdefs.h> -
c/src/tests/samples/unlimited/test1.c
rdee8a51 rf59df6b2 54 54 result = rtems_task_create(name, 55 55 10, 56 4096,56 RTEMS_MINIMUM_STACK_SIZE, 57 57 RTEMS_DEFAULT_ATTRIBUTES, 58 58 RTEMS_LOCAL, … … 64 64 printf("number = %3i, id = %08x, starting, ", task_count, task_id[task_count]); 65 65 66 fflush(stdout); 66 67 result = rtems_task_start(task_id[task_count], 67 68 test_task, -
c/src/tests/samples/unlimited/test2.c
rdee8a51 rf59df6b2 56 56 result = rtems_task_create(name, 57 57 10, 58 4096,58 RTEMS_MINIMUM_STACK_SIZE, 59 59 RTEMS_DEFAULT_ATTRIBUTES, 60 60 RTEMS_LOCAL, … … 65 65 66 66 printf("number = %3i, id = %08x, starting, ", task_count, task_id[task_count]); 67 fflush(stdout); 67 68 68 69 result = rtems_task_start(task_id[task_count], … … 149 150 result = rtems_task_create(name, 150 151 10, 151 4096,152 RTEMS_MINIMUM_STACK_SIZE, 152 153 RTEMS_DEFAULT_ATTRIBUTES, 153 154 RTEMS_LOCAL, -
c/src/tests/samples/unlimited/test3.c
rdee8a51 rf59df6b2 64 64 result = rtems_task_create(name, 65 65 10, 66 4096,66 RTEMS_MINIMUM_STACK_SIZE, 67 67 RTEMS_DEFAULT_ATTRIBUTES, 68 68 RTEMS_LOCAL, … … 73 73 74 74 printf("number = %3i, id = %08x, starting, ", task_count, task_id[task_count]); 75 fflush(stdout); 75 76 76 77 result = rtems_task_start(task_id[task_count], -
testsuites/samples/unlimited/init.c
rdee8a51 rf59df6b2 91 91 { 92 92 printf(" %s : signal task %08x to delete, ", who, task_id[task]); 93 fflush(stdout); 93 94 rtems_event_send(task_id[task], 1); 94 95 task_id[task] = 0; -
testsuites/samples/unlimited/system.h
rdee8a51 rf59df6b2 16 16 17 17 #include <rtems.h> 18 19 #define TASK_ALLOCATION_SIZE (5)20 #define CONFIGURE_MAXIMUM_TASKS rtems_resource_unlimited(TASK_ALLOCATION_SIZE)21 18 22 19 #include <tmacros.h> … … 50 47 51 48 #define CONFIGURE_RTEMS_INIT_TASKS_TABLE 49 50 #define TASK_ALLOCATION_SIZE (5) 51 #define CONFIGURE_MAXIMUM_TASKS rtems_resource_unlimited(TASK_ALLOCATION_SIZE) 52 #define CONFIGURE_EXTRA_TASK_STACKS (62 * RTEMS_MINIMUM_STACK_SIZE) 53 52 54 53 55 #include <confdefs.h> -
testsuites/samples/unlimited/test1.c
rdee8a51 rf59df6b2 54 54 result = rtems_task_create(name, 55 55 10, 56 4096,56 RTEMS_MINIMUM_STACK_SIZE, 57 57 RTEMS_DEFAULT_ATTRIBUTES, 58 58 RTEMS_LOCAL, … … 64 64 printf("number = %3i, id = %08x, starting, ", task_count, task_id[task_count]); 65 65 66 fflush(stdout); 66 67 result = rtems_task_start(task_id[task_count], 67 68 test_task, -
testsuites/samples/unlimited/test2.c
rdee8a51 rf59df6b2 56 56 result = rtems_task_create(name, 57 57 10, 58 4096,58 RTEMS_MINIMUM_STACK_SIZE, 59 59 RTEMS_DEFAULT_ATTRIBUTES, 60 60 RTEMS_LOCAL, … … 65 65 66 66 printf("number = %3i, id = %08x, starting, ", task_count, task_id[task_count]); 67 fflush(stdout); 67 68 68 69 result = rtems_task_start(task_id[task_count], … … 149 150 result = rtems_task_create(name, 150 151 10, 151 4096,152 RTEMS_MINIMUM_STACK_SIZE, 152 153 RTEMS_DEFAULT_ATTRIBUTES, 153 154 RTEMS_LOCAL, -
testsuites/samples/unlimited/test3.c
rdee8a51 rf59df6b2 64 64 result = rtems_task_create(name, 65 65 10, 66 4096,66 RTEMS_MINIMUM_STACK_SIZE, 67 67 RTEMS_DEFAULT_ATTRIBUTES, 68 68 RTEMS_LOCAL, … … 73 73 74 74 printf("number = %3i, id = %08x, starting, ", task_count, task_id[task_count]); 75 fflush(stdout); 75 76 76 77 result = rtems_task_start(task_id[task_count],
Note: See TracChangeset
for help on using the changeset viewer.