Changeset fcbefb5 in rtems
- Timestamp:
- 01/28/21 08:48:21 (2 years ago)
- Branches:
- master
- Children:
- f8b6359
- Parents:
- b361eabd
- git-author:
- Sebastian Huber <sebastian.huber@…> (01/28/21 08:48:21)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (01/28/21 08:58:03)
- Location:
- cpukit/rtems/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/rtems/src/clockset.c
rb361eabd rfcbefb5 22 22 23 23 #include <rtems/rtems/clockimpl.h> 24 #include <rtems/rtems/statusimpl.h> 24 25 #include <rtems/score/todimpl.h> 25 26 #include <rtems/config.h> … … 47 48 _TOD_Unlock(); 48 49 49 return STATUS_GET_CLASSIC( status );50 return _Status_Get( status ); 50 51 } 51 52 -
cpukit/rtems/src/msgqconstruct.c
rb361eabd rfcbefb5 23 23 #include <rtems/rtems/messageimpl.h> 24 24 #include <rtems/rtems/attrimpl.h> 25 #include <rtems/rtems/statusimpl.h> 25 26 #include <rtems/rtems/support.h> 26 27 #include <rtems/score/coremsgimpl.h> … … 155 156 _Message_queue_Free( the_message_queue ); 156 157 _Objects_Allocator_unlock(); 157 return STATUS_GET_CLASSIC( status );158 return _Status_Get( status ); 158 159 } 159 160 -
cpukit/rtems/src/rtemsobjectsetname.c
rb361eabd rfcbefb5 22 22 23 23 #include <rtems/rtems/object.h> 24 #include <rtems/rtems/statusimpl.h> 24 25 #include <rtems/rtems/tasks.h> 25 26 #include <rtems/score/objectimpl.h> … … 59 60 status = _Objects_Set_name( information, the_object, name ); 60 61 _Objects_Allocator_unlock(); 61 return STATUS_GET_CLASSIC( status );62 return _Status_Get( status ); 62 63 }
Note: See TracChangeset
for help on using the changeset viewer.