File tree Expand file tree Collapse file tree 6 files changed +10
-0
lines changed
linux_like/linux/gnu/b64/riscv64 Expand file tree Collapse file tree 6 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -500,6 +500,7 @@ IPV6_RECVPKTINFO
500500IPV6_RECVTCLASS
501501IPV6_TCLASS
502502IP_HDRINCL
503+ IP_MINTTL
503504IP_RECVDSTADDR
504505IP_RECVIF
505506IP_RECVTTL
Original file line number Diff line number Diff line change @@ -663,6 +663,7 @@ IP_BINDANY
663663IP_BINDMULTI
664664IP_DONTFRAG
665665IP_HDRINCL
666+ IP_MINTTL
666667IP_ORIGDSTADDR
667668IP_RECVDSTADDR
668669IP_RECVIF
Original file line number Diff line number Diff line change @@ -80,3 +80,4 @@ TIOCSRS485
8080flock64
8181fsblkcnt64_t
8282fsfilcnt64_t
83+ max_align_t
Original file line number Diff line number Diff line change @@ -935,6 +935,7 @@ pub const IP_ADD_MEMBERSHIP: c_int = 12;
935935pub const IP_DROP_MEMBERSHIP : c_int = 13 ;
936936pub const IP_RECVIF : c_int = 20 ;
937937pub const IP_RECVTTL : c_int = 65 ;
938+ pub const IP_MINTTL : c_int = 66 ;
938939pub const IPV6_RECVHOPLIMIT : c_int = 37 ;
939940pub const IPV6_JOIN_GROUP : c_int = 12 ;
940941pub const IPV6_LEAVE_GROUP : c_int = 13 ;
Original file line number Diff line number Diff line change @@ -1038,6 +1038,7 @@ pub const TIOCM_RTS: c_int = 0x004;
10381038pub const TIOCM_CTS : c_int = 0x020 ;
10391039pub const TIOCM_CAR : c_int = 0x040 ;
10401040pub const TIOCM_RNG : c_int = 0x080 ;
1041+ pub const TIOCM_DSR : c_int = 0x100 ;
10411042pub const TIOCM_CD : c_int = TIOCM_CAR ;
10421043pub const TIOCM_RI : c_int = TIOCM_RNG ;
10431044pub const TCOOFF : c_int = 0 ;
Original file line number Diff line number Diff line change @@ -286,6 +286,11 @@ s_no_extra_traits! {
286286 pub __fcsr: c_uint,
287287 pub __glibc_reserved: [ c_uint; 3 ] ,
288288 }
289+
290+ #[ repr( align( 16 ) ) ]
291+ pub struct max_align_t {
292+ priv_: [ f32 ; 8 ] ,
293+ }
289294}
290295
291296pub const POSIX_FADV_DONTNEED : c_int = 4 ;
You can’t perform that action at this time.
0 commit comments