forked from Imagelibrary/rtems
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
* optman/rtems/no-sem.c: Semaphores are rtems_id not Object_id.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* optman/rtems/no-sem.c: Semaphores are rtems_id not Object_id.
|
||||||
|
|
||||||
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
|
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* libnetworking/rtems_servers/ftp.c,
|
* libnetworking/rtems_servers/ftp.c,
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ rtems_status_code rtems_semaphore_create(
|
|||||||
uint32_t count,
|
uint32_t count,
|
||||||
rtems_attribute attribute_set,
|
rtems_attribute attribute_set,
|
||||||
rtems_task_priority priority_ceiling,
|
rtems_task_priority priority_ceiling,
|
||||||
Objects_Id *id
|
rtems_id *id
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
_Internal_error_Occurred(
|
_Internal_error_Occurred(
|
||||||
@@ -49,7 +49,7 @@ rtems_status_code rtems_semaphore_create(
|
|||||||
rtems_status_code rtems_semaphore_ident(
|
rtems_status_code rtems_semaphore_ident(
|
||||||
rtems_name name,
|
rtems_name name,
|
||||||
uint32_t node,
|
uint32_t node,
|
||||||
Objects_Id *id
|
rtems_id *id
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
_Internal_error_Occurred(
|
_Internal_error_Occurred(
|
||||||
@@ -61,7 +61,7 @@ rtems_status_code rtems_semaphore_ident(
|
|||||||
}
|
}
|
||||||
|
|
||||||
rtems_status_code rtems_semaphore_delete(
|
rtems_status_code rtems_semaphore_delete(
|
||||||
Objects_Id id
|
rtems_id id
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
_Internal_error_Occurred(
|
_Internal_error_Occurred(
|
||||||
@@ -73,7 +73,7 @@ rtems_status_code rtems_semaphore_delete(
|
|||||||
}
|
}
|
||||||
|
|
||||||
rtems_status_code rtems_semaphore_obtain(
|
rtems_status_code rtems_semaphore_obtain(
|
||||||
Objects_Id id,
|
rtems_id id,
|
||||||
uint32_t option_set,
|
uint32_t option_set,
|
||||||
rtems_interval timeout
|
rtems_interval timeout
|
||||||
)
|
)
|
||||||
@@ -87,7 +87,7 @@ rtems_status_code rtems_semaphore_obtain(
|
|||||||
}
|
}
|
||||||
|
|
||||||
rtems_status_code rtems_semaphore_release(
|
rtems_status_code rtems_semaphore_release(
|
||||||
Objects_Id id
|
rtems_id id
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
_Internal_error_Occurred(
|
_Internal_error_Occurred(
|
||||||
|
|||||||
Reference in New Issue
Block a user