File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -240,6 +240,7 @@ fn test_apple(target: &str) {
240
240
"pthread.h" ,
241
241
"pthread_spis.h" ,
242
242
"pthread/introspection.h" ,
243
+ "pthread/spawn.h" ,
243
244
"pthread/stack_np.h" ,
244
245
"pwd.h" ,
245
246
"regex.h" ,
Original file line number Diff line number Diff line change @@ -2033,12 +2033,14 @@ posix_spawn_file_actions_destroy
2033
2033
posix_spawn_file_actions_init
2034
2034
posix_spawn_file_actions_t
2035
2035
posix_spawnattr_destroy
2036
+ posix_spawnattr_get_qos_class_np
2036
2037
posix_spawnattr_getarchpref_np
2037
2038
posix_spawnattr_getflags
2038
2039
posix_spawnattr_getpgroup
2039
2040
posix_spawnattr_getsigdefault
2040
2041
posix_spawnattr_getsigmask
2041
2042
posix_spawnattr_init
2043
+ posix_spawnattr_set_qos_class_np
2042
2044
posix_spawnattr_setarchpref_np
2043
2045
posix_spawnattr_setflags
2044
2046
posix_spawnattr_setpgroup
Original file line number Diff line number Diff line change @@ -5563,6 +5563,14 @@ extern "C" {
5563
5563
subpref : * mut :: cpu_subtype_t ,
5564
5564
ocount : * mut :: size_t ,
5565
5565
) -> :: c_int ;
5566
+ pub fn posix_spawnattr_set_qos_class_np (
5567
+ attr : * mut posix_spawnattr_t ,
5568
+ qos_class : :: qos_class_t ,
5569
+ ) -> :: c_int ;
5570
+ pub fn posix_spawnattr_get_qos_class_np (
5571
+ attr : * const posix_spawnattr_t ,
5572
+ qos_class : * mut :: qos_class_t ,
5573
+ ) -> :: c_int ;
5566
5574
5567
5575
pub fn posix_spawn_file_actions_init ( actions : * mut posix_spawn_file_actions_t ) -> :: c_int ;
5568
5576
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