File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -1656,6 +1656,7 @@ fdopendir
1656
1656
fgetxattr
1657
1657
flistxattr
1658
1658
fmemopen
1659
+ fmount
1659
1660
forkpty
1660
1661
freeifaddrs
1661
1662
freelocale
@@ -1796,11 +1797,13 @@ posix_spawn_file_actions_destroy
1796
1797
posix_spawn_file_actions_init
1797
1798
posix_spawn_file_actions_t
1798
1799
posix_spawnattr_destroy
1800
+ posix_spawnattr_getarchpref_np
1799
1801
posix_spawnattr_getflags
1800
1802
posix_spawnattr_getpgroup
1801
1803
posix_spawnattr_getsigdefault
1802
1804
posix_spawnattr_getsigmask
1803
1805
posix_spawnattr_init
1806
+ posix_spawnattr_setarchpref_np
1804
1807
posix_spawnattr_setflags
1805
1808
posix_spawnattr_setpgroup
1806
1809
posix_spawnattr_setsigdefault
Original file line number Diff line number Diff line change @@ -4934,6 +4934,12 @@ extern "C" {
4934
4934
flags : :: c_int ,
4935
4935
data : * mut :: c_void ,
4936
4936
) -> :: c_int ;
4937
+ pub fn fmount (
4938
+ src : * const :: c_char ,
4939
+ fd : :: c_int ,
4940
+ flags : :: c_int ,
4941
+ data : * mut :: c_void ,
4942
+ ) -> :: c_int ;
4937
4943
pub fn ptrace ( request : :: c_int , pid : :: pid_t , addr : * mut :: c_char , data : :: c_int ) -> :: c_int ;
4938
4944
pub fn quotactl (
4939
4945
special : * const :: c_char ,
@@ -5110,6 +5116,20 @@ extern "C" {
5110
5116
flags : * mut :: pid_t ,
5111
5117
) -> :: c_int ;
5112
5118
pub fn posix_spawnattr_setpgroup ( attr : * mut posix_spawnattr_t , flags : :: pid_t ) -> :: c_int ;
5119
+ pub fn posix_spawnattr_setarchpref_np (
5120
+ attr : * mut posix_spawnattr_t ,
5121
+ count : :: size_t ,
5122
+ pref : * mut :: cpu_type_t ,
5123
+ subpref : * mut :: cpu_subtype_t ,
5124
+ ocount : * mut :: size_t ,
5125
+ ) -> :: c_int ;
5126
+ pub fn posix_spawnattr_getarchpref_np (
5127
+ attr : * const posix_spawnattr_t ,
5128
+ count : :: size_t ,
5129
+ pref : * mut :: cpu_type_t ,
5130
+ subpref : * mut :: cpu_subtype_t ,
5131
+ ocount : * mut :: size_t ,
5132
+ ) -> :: c_int ;
5113
5133
5114
5134
pub fn posix_spawn_file_actions_init ( actions : * mut posix_spawn_file_actions_t ) -> :: c_int ;
5115
5135
pub fn posix_spawn_file_actions_destroy ( actions : * mut posix_spawn_file_actions_t ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments