summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/rtems/src/clockset.c3
-rw-r--r--cpukit/rtems/src/msgqconstruct.c3
-rw-r--r--cpukit/rtems/src/rtemsobjectsetname.c3
3 files changed, 6 insertions, 3 deletions
diff --git a/cpukit/rtems/src/clockset.c b/cpukit/rtems/src/clockset.c
index a4a3cd1507..7a085ada69 100644
--- a/cpukit/rtems/src/clockset.c
+++ b/cpukit/rtems/src/clockset.c
@@ -21,6 +21,7 @@
#endif
#include <rtems/rtems/clockimpl.h>
+#include <rtems/rtems/statusimpl.h>
#include <rtems/score/todimpl.h>
#include <rtems/config.h>
@@ -46,7 +47,7 @@ rtems_status_code rtems_clock_set(
status = _TOD_Set( &tod_as_timespec, &lock_context );
_TOD_Unlock();
- return STATUS_GET_CLASSIC( status );
+ return _Status_Get( status );
}
return RTEMS_INVALID_CLOCK;
diff --git a/cpukit/rtems/src/msgqconstruct.c b/cpukit/rtems/src/msgqconstruct.c
index af5849b0aa..a8a50e9aa1 100644
--- a/cpukit/rtems/src/msgqconstruct.c
+++ b/cpukit/rtems/src/msgqconstruct.c
@@ -22,6 +22,7 @@
#include <rtems/rtems/messageimpl.h>
#include <rtems/rtems/attrimpl.h>
+#include <rtems/rtems/statusimpl.h>
#include <rtems/rtems/support.h>
#include <rtems/score/coremsgimpl.h>
#include <rtems/sysinit.h>
@@ -154,7 +155,7 @@ rtems_status_code _Message_queue_Create(
_Message_queue_Free( the_message_queue );
_Objects_Allocator_unlock();
- return STATUS_GET_CLASSIC( status );
+ return _Status_Get( status );
}
_Objects_Open(
diff --git a/cpukit/rtems/src/rtemsobjectsetname.c b/cpukit/rtems/src/rtemsobjectsetname.c
index 71be850069..68127b03bb 100644
--- a/cpukit/rtems/src/rtemsobjectsetname.c
+++ b/cpukit/rtems/src/rtemsobjectsetname.c
@@ -21,6 +21,7 @@
#endif
#include <rtems/rtems/object.h>
+#include <rtems/rtems/statusimpl.h>
#include <rtems/rtems/tasks.h>
#include <rtems/score/objectimpl.h>
@@ -58,5 +59,5 @@ rtems_status_code rtems_object_set_name(
status = _Objects_Set_name( information, the_object, name );
_Objects_Allocator_unlock();
- return STATUS_GET_CLASSIC( status );
+ return _Status_Get( status );
}