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
For 32 bit linux with GNU glibc and _TIME_BITS=64,
the generated C tests for the members of timeval will fail if the
struct member tv_usec is of type suseconds_txt:
suseconds_t* __test_field_type_timeval_tv_usec(struct timeval* b) {
return &b->tv_usec;
}
Where timeval.tv_usec is actually __suseconds64_t (64 bits) while
suseconds_t is still 32 bits.
0 commit comments