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 @@ -5668,6 +5668,9 @@ fn test_aix(target: &str) {
5668
5668
// https://github.com/gnzlbg/ctest/issues/68.
5669
5669
"lio_listio" => true ,
5670
5670
5671
+ // The function is only available under macro _KERNEL in 'proto_uipc.h'.
5672
+ "getpeereid" => true ,
5673
+
5671
5674
_ => false ,
5672
5675
}
5673
5676
} ) ;
Original file line number Diff line number Diff line change @@ -1987,6 +1987,7 @@ getmntent
1987
1987
getnameinfo
1988
1988
getopt
1989
1989
getpagesize
1990
+ getpeereid
1990
1991
getpeername
1991
1992
getpgid
1992
1993
getpgrp
Original file line number Diff line number Diff line change @@ -2943,6 +2943,7 @@ extern "C" {
2943
2943
flags : c_int ,
2944
2944
) -> c_int ;
2945
2945
pub fn getpagesize ( ) -> c_int ;
2946
+ pub fn getpeereid ( socket : c_int , euid : * mut crate :: uid_t , egid : * mut crate :: gid_t ) -> c_int ;
2946
2947
pub fn getpriority ( which : c_int , who : crate :: id_t ) -> c_int ;
2947
2948
pub fn getpwent ( ) -> * mut crate :: passwd ;
2948
2949
#[ link_name = "_posix_getpwnam_r" ]
You can’t perform that action at this time.
0 commit comments