File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -5729,6 +5729,9 @@ fn test_aix(target: &str) {
5729
5729
// https://github.com/gnzlbg/ctest/issues/68.
5730
5730
"lio_listio" => true ,
5731
5731
5732
+ // The function is only available under macro _KERNEL in 'proto_uipc.h'.
5733
+ "getpeereid" => true ,
5734
+
5732
5735
_ => false ,
5733
5736
}
5734
5737
} ) ;
Original file line number Diff line number Diff line change @@ -1989,6 +1989,7 @@ getmntent
1989
1989
getnameinfo
1990
1990
getopt
1991
1991
getpagesize
1992
+ getpeereid
1992
1993
getpeername
1993
1994
getpgid
1994
1995
getpgrp
Original file line number Diff line number Diff line change @@ -2949,6 +2949,7 @@ extern "C" {
2949
2949
flags : c_int ,
2950
2950
) -> c_int ;
2951
2951
pub fn getpagesize ( ) -> c_int ;
2952
+ pub fn getpeereid ( socket : c_int , euid : * mut crate :: uid_t , egid : * mut crate :: gid_t ) -> c_int ;
2952
2953
pub fn getpriority ( which : c_int , who : crate :: id_t ) -> c_int ;
2953
2954
pub fn getpwent ( ) -> * mut crate :: passwd ;
2954
2955
#[ link_name = "_posix_getpwnam_r" ]
You can’t perform that action at this time.
0 commit comments