Changeset 0897d38 in rtems for testsuites/mptests
- Timestamp:
- Nov 7, 2001, 11:04:50 PM (18 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, master
- Children:
- 2444583
- Parents:
- 4afc28ad
- Location:
- testsuites/mptests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/mptests/ChangeLog
r4afc28ad r0897d38 1 2001-11-07 Joel Sherrill <joel@OARcorp.com> 2 3 Tracked as PR72 but related to the object id problem (PR36) 4 reported by Todor.Todorov@barco.com. 5 * mp03/delay.c: Dispatch disable level is actually 1 not 0. 6 * mp13/system.h: Configure enough tasks (CONFIGURE_MAXIMUM_TASKS=3). 7 * mp14/delay.c: Dispatch disable level may be arbitrarily > 0. 8 2001-10-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 9 1 10 * .cvsignore: Add autom4te.cache for autoconf > 2.52. 2 11 * configure.in: Remove. -
testsuites/mptests/mp03/delay.c
r4afc28ad r0897d38 27 27 28 28 status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_16 ); 29 directive_failed ( status, "rtems_event_send");29 directive_failed_with_level( status, "rtems_event_send", 1 ); 30 30 } -
testsuites/mptests/mp13/system.h
r4afc28ad r0897d38 37 37 #define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER 38 38 39 #define CONFIGURE_MAXIMUM_TASKS 239 #define CONFIGURE_MAXIMUM_TASKS 3 40 40 #if ( NODE_NUMBER == 1 ) 41 41 #define CONFIGURE_MAXIMUM_SEMAPHORES 1 -
testsuites/mptests/mp14/delay.c
r4afc28ad r0897d38 30 30 RTEMS_EVENT_16 31 31 ); 32 directive_failed( status, "rtems_event_send" );32 fatal_directive_check_status_only( status, RTEMS_SUCCESSFUL, "rtems_event_send" ); 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.