Sebastian Huber commented on a discussion on 
cpukit/include/rtems/score/timestampimpl.h: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1076#note_147583

 >   */
 >  static inline time_t _Timestamp_Get_seconds( const Timestamp_Control *_time 
 > )
 >  {
 > -  return ( *_time >> 32 );
 > +  return (time_t) ( ( (uint64_t) *_time ) >> 32 );

Before this can be addressed, #5538 needs to be resolved.

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1076#note_147583
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
[email protected]
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to