We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ab1874 + d0d0db2 commit 4ac74f5Copy full SHA for 4ac74f5
libc-test/semver/apple.txt
@@ -2265,6 +2265,8 @@ uselocale
2265
utimensat
2266
utmpx
2267
utmpxname
2268
+vm_allocate
2269
+vm_deallocate
2270
vm_inherit_t
2271
vm_map_t
2272
vm_prot_t
src/unix/bsd/apple/mod.rs
@@ -6279,6 +6279,13 @@ extern "C" {
6279
inheritance: ::vm_inherit_t,
6280
) -> ::kern_return_t;
6281
6282
+ pub fn vm_allocate(
6283
+ target_task: vm_map_t,
6284
+ address: *mut vm_address_t,
6285
+ size: vm_size_t,
6286
+ flags: ::c_int,
6287
+ ) -> ::kern_return_t;
6288
+
6289
pub fn vm_deallocate(
6290
target_task: vm_map_t,
6291
address: vm_address_t,
0 commit comments