File tree 4 files changed +19
-1
lines changed
src/unix/bsd/freebsdlike/freebsd
4 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 15
15
task :
16
16
name : nightly x86_64-unknown-freebsd-13
17
17
freebsd_instance :
18
- image_family : freebsd-13-1
18
+ image_family : freebsd-13-2
19
19
setup_script :
20
20
- pkg install -y libnghttp2 curl
21
21
- curl https://sh.rustup.rs -sSf --output rustup.sh
Original file line number Diff line number Diff line change @@ -2296,6 +2296,9 @@ fn test_freebsd(target: &str) {
2296
2296
// Added in FreeBSD 14
2297
2297
"EV_KEEPUDATA" if Some ( 14 ) > freebsd_ver => true ,
2298
2298
2299
+ // Added in FreeBSD 13.2
2300
+ "AT_USRSTACKBASE" | "AT_USRSTACKLIM" if Some ( 13 ) > freebsd_ver => true ,
2301
+
2299
2302
_ => false ,
2300
2303
}
2301
2304
} ) ;
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ ATF_PERM
84
84
ATF_PUBL
85
85
ATF_USETRAILERS
86
86
AT_BASE
87
+ AT_CANARY
87
88
AT_EACCESS
88
89
AT_EGID
89
90
AT_EMPTY_PATH
@@ -93,8 +94,13 @@ AT_EXECPATH
93
94
AT_FDCWD
94
95
AT_FLAGS
95
96
AT_GID
97
+ AT_HWCAP
98
+ AT_HWCAP2
99
+ AT_NCPUS
96
100
AT_NOTELF
97
101
AT_NULL
102
+ AT_OSRELDATE
103
+ AT_PAGESIZES
98
104
AT_PAGESZ
99
105
AT_PHDR
100
106
AT_PHENT
Original file line number Diff line number Diff line change @@ -3767,6 +3767,15 @@ pub const AT_EUID: ::c_int = 12;
3767
3767
pub const AT_GID : :: c_int = 13 ;
3768
3768
pub const AT_EGID : :: c_int = 14 ;
3769
3769
pub const AT_EXECPATH : :: c_int = 15 ;
3770
+ pub const AT_CANARY : :: c_int = 16 ;
3771
+ pub const AT_OSRELDATE : :: c_int = 18 ;
3772
+ pub const AT_NCPUS : :: c_int = 19 ;
3773
+ pub const AT_PAGESIZES : :: c_int = 20 ;
3774
+ pub const AT_TIMEKEEP : :: c_int = 22 ;
3775
+ pub const AT_HWCAP : :: c_int = 25 ;
3776
+ pub const AT_HWCAP2 : :: c_int = 26 ;
3777
+ pub const AT_USRSTACKBASE : :: c_int = 35 ;
3778
+ pub const AT_USRSTACKLIM : :: c_int = 36 ;
3770
3779
3771
3780
pub const TABDLY : :: tcflag_t = 0x00000004 ;
3772
3781
pub const TAB0 : :: tcflag_t = 0x00000000 ;
You can’t perform that action at this time.
0 commit comments