Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change shm_open() calling ABI on aarch64 Darwin #43516

Merged
merged 1 commit into from
Dec 31, 2021
Merged

Commits on Dec 22, 2021

  1. Change shm_open() calling ABI on aarch64 Darwin

    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.
    staticfloat committed Dec 22, 2021
    Configuration menu
    Copy the full SHA
    9e785b6 View commit details
    Browse the repository at this point in the history