Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change
shm_open()
calling ABI on aarch64 Darwin (JuliaLang#43516)
Beacuse `shm_open()` is a variadic function, if we don't declare it as such, the kernel receives trash as the `permissions` value, which occasionally results in errors when creating shared memory segments. This did not happen on `x86_64` because the calling convention doesn't change so much between variadic and non-vadiadic functions.
- Loading branch information