File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3704,7 +3704,9 @@ fn test_linux(target: &str) {
3704
3704
if musl && ty == "seccomp_notif_sizes" {
3705
3705
return true ;
3706
3706
}
3707
- if musl && ty == "ptp_sys_offset_extended" {
3707
+
3708
+ // FIXME: CI has old headers
3709
+ if ty == "ptp_sys_offset_extended" {
3708
3710
return true ;
3709
3711
}
3710
3712
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ pub type pthread_key_t = ::c_uint;
17
17
pub type pthread_once_t = :: c_int ;
18
18
pub type pthread_spinlock_t = :: c_int ;
19
19
pub type __kernel_fsid_t = __c_anonymous__kernel_fsid_t ;
20
+ pub type __kernel_clockid_t = :: c_int ;
20
21
21
22
pub type __u8 = :: c_uchar ;
22
23
pub type __u16 = :: c_ushort ;
839
840
840
841
pub struct ptp_sys_offset_extended {
841
842
pub n_samples: :: c_uint,
842
- pub rsv: [ :: c_uint; 3 ] ,
843
+ pub clockid: __kernel_clockid_t,
844
+ pub rsv: [ :: c_uint; 2 ] ,
843
845
pub ts: [ [ ptp_clock_time; 3 ] ; PTP_MAX_SAMPLES as usize ] ,
844
846
}
845
847
You can’t perform that action at this time.
0 commit comments