Skip to content

Commit f136b30

Browse files
committedAug 17, 2024
adding aligned_alloc support for unixes.
close #3689
1 parent 509d9b3 commit f136b30

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed
 

‎libc-test/build.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1936,6 +1936,9 @@ fn test_android(target: &str) {
19361936
// Added in API level 28, but some tests use level 24.
19371937
"fread_unlocked" | "fwrite_unlocked" | "fgets_unlocked" | "fflush_unlocked" => true,
19381938

1939+
// Added in API level 28, but some tests use level 24.
1940+
"aligned_alloc" => true,
1941+
19391942
// FIXME: bad function pointers:
19401943
"isalnum" | "isalpha" | "iscntrl" | "isdigit" | "isgraph" | "islower" | "isprint"
19411944
| "ispunct" | "isspace" | "isupper" | "isxdigit" | "isblank" | "tolower"

‎libc-test/semver/unix.txt

+1
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,7 @@ accept
452452
access
453453
addrinfo
454454
alarm
455+
aligned_alloc
455456
atexit
456457
atof
457458
atoi

‎src/unix/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -896,6 +896,7 @@ extern "C" {
896896
pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long;
897897
pub fn pipe(fds: *mut ::c_int) -> ::c_int;
898898
pub fn posix_memalign(memptr: *mut *mut ::c_void, align: ::size_t, size: ::size_t) -> ::c_int;
899+
pub fn aligned_alloc(alignment: ::size_t, size: ::size_t) -> *mut ::c_void;
899900
#[cfg_attr(
900901
all(target_os = "macos", target_arch = "x86"),
901902
link_name = "read$UNIX2003"

0 commit comments

Comments
 (0)