You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
PSP is directly accessing specific fields within OS_time_t which will break when the struct definition changes.
Describe the solution you'd like
Instead of directly accessing the seconds and microsecs fields within OS_time_t, use the accessor functions to convert/extract the relevant info from the value instead.
Instead of accessing OS_time_t values directly, use the
OSAL-provided conversion and access methods. This provides
independence/abstraction from the specific OS_time_t
definition and allows OSAL to transition to a 64 bit value.
Is your feature request related to a problem? Please describe.
PSP is directly accessing specific fields within
OS_time_t
which will break when the struct definition changes.Describe the solution you'd like
Instead of directly accessing the
seconds
andmicrosecs
fields withinOS_time_t
, use the accessor functions to convert/extract the relevant info from the value instead.Additional context
see nasa/osal#429
Requester Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: