2009-08-17 Santosh G Vattam <vattam.santosh@gmail.com>

* sp65/init.c: Remove stray print.
	* sp65/sp65.doc: Add information on second case.
This commit is contained in:
Joel Sherrill
2009-08-17 17:42:21 +00:00
parent 07ed2f879c
commit 58dbfd7c61
3 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2009-08-17 Santosh G Vattam <vattam.santosh@gmail.com>
* sp65/init.c: Remove stray print.
* sp65/sp65.doc: Add information on second case.
2009-08-13 Santosh G Vattam <vattam.santosh@gmail.com> 2009-08-13 Santosh G Vattam <vattam.santosh@gmail.com>
* sp65/init.c, sp65/sp65.doc, sp65/sp65.scn: Add new test case to * sp65/init.c, sp65/sp65.doc, sp65/sp65.scn: Add new test case to

View File

@@ -78,7 +78,6 @@ rtems_task Task_1(
puts( "Init Task_1: Obtaining semaphore" ); puts( "Init Task_1: Obtaining semaphore" );
status_in_task = rtems_semaphore_obtain( *Mutex_id, RTEMS_DEFAULT_OPTIONS, 0 ); status_in_task = rtems_semaphore_obtain( *Mutex_id, RTEMS_DEFAULT_OPTIONS, 0 );
printf( "status_in_task:%d\n", status_in_task );
directive_failed( status_in_task, "Task_1 rtems_semaphore_obtain" ); directive_failed( status_in_task, "Task_1 rtems_semaphore_obtain" );
return; return;
} }

View File

@@ -22,3 +22,7 @@ concepts:
+ Verify that obtaining a priority ceiling mutex when the calling task's + Verify that obtaining a priority ceiling mutex when the calling task's
priority is the same as the priority ceiling is handled correctly. priority is the same as the priority ceiling is handled correctly.
+ Verify the priority ceiling mutex getting released which results in a thread
being unblocked and the unblocked thread's priority being elevated.