On Fri, May 29, 2020 at 01:45:37PM +0100, Stuart Henderson wrote:
> On 2020/05/29 13:50, Paul Irofti wrote:
> > +struct __timekeep {
> > + uint32_t major; /* version major number */
> > + uint32_t minor; /* version minor number */
> > +
> > + u_int64_t th_scale;
> > + unsigned int th_offset_count;
> > + struct bintime th_offset;
> > + struct bintime th_naptime;
> > + struct bintime th_boottime;
> > + volatile unsigned int th_generation;
> > +
> > + unsigned int tc_user;
> > + unsigned int tc_counter_mask;
> > +};
>
> Ah good, you got rid of u_int, that was causing problems with port builds.
Probably the u_int64_t should also be changed to uint64_t. At least I
think code should not mix u_intXY_t and uintXY_t.
--
:wq Claudio