File tree 2 files changed +6
-2
lines changed
src/unix/linux_like/linux
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3702,7 +3702,9 @@ fn test_linux(target: &str) {
3702
3702
if musl && ty == "seccomp_notif_sizes" {
3703
3703
return true ;
3704
3704
}
3705
- if musl && ty == "ptp_sys_offset_extended" {
3705
+
3706
+ // FIXME: CI has old headers
3707
+ if ty == "ptp_sys_offset_extended" {
3706
3708
return true ;
3707
3709
}
3708
3710
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ pub type pthread_key_t = ::c_uint;
19
19
pub type pthread_once_t = :: c_int ;
20
20
pub type pthread_spinlock_t = :: c_int ;
21
21
pub type __kernel_fsid_t = __c_anonymous__kernel_fsid_t ;
22
+ pub type __kernel_clockid_t = :: c_int ;
22
23
23
24
pub type __u8 = :: c_uchar ;
24
25
pub type __u16 = :: c_ushort ;
847
848
848
849
pub struct ptp_sys_offset_extended {
849
850
pub n_samples: :: c_uint,
850
- pub rsv: [ :: c_uint; 3 ] ,
851
+ pub clockid: __kernel_clockid_t,
852
+ pub rsv: [ :: c_uint; 2 ] ,
851
853
pub ts: [ [ ptp_clock_time; 3 ] ; PTP_MAX_SAMPLES as usize ] ,
852
854
}
853
855
You can’t perform that action at this time.
0 commit comments