forked from Imagelibrary/rtems
Use rtems_id for semaphores.
This commit is contained in:
@@ -170,7 +170,7 @@ rtems_status_code rtems_semaphore_release(
|
||||
*/
|
||||
|
||||
rtems_status_code rtems_semaphore_flush(
|
||||
Objects_Id id
|
||||
rtems_id id
|
||||
);
|
||||
|
||||
/*
|
||||
|
||||
@@ -74,7 +74,7 @@ rtems_status_code rtems_semaphore_create(
|
||||
uint32_t count,
|
||||
rtems_attribute attribute_set,
|
||||
rtems_task_priority priority_ceiling,
|
||||
Objects_Id *id
|
||||
rtems_id *id
|
||||
)
|
||||
{
|
||||
register Semaphore_Control *the_semaphore;
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
#endif
|
||||
|
||||
rtems_status_code rtems_semaphore_delete(
|
||||
Objects_Id id
|
||||
rtems_id id
|
||||
)
|
||||
{
|
||||
register Semaphore_Control *the_semaphore;
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
#endif
|
||||
|
||||
rtems_status_code rtems_semaphore_flush(
|
||||
Objects_Id id
|
||||
rtems_id id
|
||||
)
|
||||
{
|
||||
register Semaphore_Control *the_semaphore;
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
rtems_status_code rtems_semaphore_ident(
|
||||
rtems_name name,
|
||||
uint32_t node,
|
||||
Objects_Id *id
|
||||
rtems_id *id
|
||||
)
|
||||
{
|
||||
Objects_Name_or_id_lookup_errors status;
|
||||
|
||||
@@ -66,7 +66,7 @@
|
||||
*/
|
||||
|
||||
rtems_status_code rtems_semaphore_obtain(
|
||||
Objects_Id id,
|
||||
rtems_id id,
|
||||
uint32_t option_set,
|
||||
rtems_interval timeout
|
||||
)
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
#endif
|
||||
|
||||
rtems_status_code rtems_semaphore_release(
|
||||
Objects_Id id
|
||||
rtems_id id
|
||||
)
|
||||
{
|
||||
register Semaphore_Control *the_semaphore;
|
||||
|
||||
Reference in New Issue
Block a user