mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-08 16:43:25 +00:00
2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/regiongetsegment.c: Remove unneccessary typecast in assignment to thread->Wait.return_argment.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* src/regiongetsegment.c: Remove unneccessary typecast in assignment
|
||||||
|
to thread->Wait.return_argment.
|
||||||
|
|
||||||
2003-10-22 Joel Sherrill <joel@OARcorp.com>
|
2003-10-22 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
PR 512/core
|
PR 512/core
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ rtems_status_code rtems_region_get_segment(
|
|||||||
executing->Wait.queue = &the_region->Wait_queue;
|
executing->Wait.queue = &the_region->Wait_queue;
|
||||||
executing->Wait.id = id;
|
executing->Wait.id = id;
|
||||||
executing->Wait.count = size;
|
executing->Wait.count = size;
|
||||||
executing->Wait.return_argument = (unsigned32 *) segment;
|
executing->Wait.return_argument = segment;
|
||||||
|
|
||||||
_Thread_queue_Enter_critical_section( &the_region->Wait_queue );
|
_Thread_queue_Enter_critical_section( &the_region->Wait_queue );
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user