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
Currently as written in SocketCAN#, the structure will not work well when used in 32-bit applications.
[StructLayout(LayoutKind.Sequential)]
public class Timeval
{
/// <summary>
/// Number of seconds.
/// </summary>
public long Seconds { get; set; }
/// <summary>
/// Number of microseconds. This value is used in combination with the Seconds property to represent the full interval of time.
/// </summary>
public long Microseconds { get; set; }
// ...
}
The text was updated successfully, but these errors were encountered:
The
timeval
struct referenceslong
type which is 4 bytes in 32-bit applications on Linux and 8 bytes in 64-bit applications on Linux.Currently as written in SocketCAN#, the structure will not work well when used in 32-bit applications.
The text was updated successfully, but these errors were encountered: