File tree Expand file tree Collapse file tree 4 files changed +19
-1
lines changed
src/unix/bsd/freebsdlike/freebsd Expand file tree Collapse file tree 4 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1515task :
1616 name : nightly x86_64-unknown-freebsd-13
1717 freebsd_instance :
18- image_family : freebsd-13-1
18+ image_family : freebsd-13-2
1919 setup_script :
2020 - pkg install -y libnghttp2 curl
2121 - 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) {
22962296 // Added in FreeBSD 14
22972297 "EV_KEEPUDATA" if Some ( 14 ) > freebsd_ver => true ,
22982298
2299+ // Added in FreeBSD 13.2
2300+ "AT_USRSTACKBASE" | "AT_USRSTACKLIM" if Some ( 13 ) > freebsd_ver => true ,
2301+
22992302 _ => false ,
23002303 }
23012304 } ) ;
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ ATF_PERM
8484ATF_PUBL
8585ATF_USETRAILERS
8686AT_BASE
87+ AT_CANARY
8788AT_EACCESS
8889AT_EGID
8990AT_EMPTY_PATH
@@ -93,8 +94,13 @@ AT_EXECPATH
9394AT_FDCWD
9495AT_FLAGS
9596AT_GID
97+ AT_HWCAP
98+ AT_HWCAP2
99+ AT_NCPUS
96100AT_NOTELF
97101AT_NULL
102+ AT_OSRELDATE
103+ AT_PAGESIZES
98104AT_PAGESZ
99105AT_PHDR
100106AT_PHENT
Original file line number Diff line number Diff line change @@ -3767,6 +3767,15 @@ pub const AT_EUID: ::c_int = 12;
37673767pub const AT_GID : :: c_int = 13 ;
37683768pub const AT_EGID : :: c_int = 14 ;
37693769pub 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 ;
37703779
37713780pub const TABDLY : :: tcflag_t = 0x00000004 ;
37723781pub const TAB0 : :: tcflag_t = 0x00000000 ;
You can’t perform that action at this time.
0 commit comments