Changes between Initial Version and Version 1 of Ticket #70694, comment 5


Ignore:
Timestamp:
Nov 2, 2024, 12:06:22 AM (7 days ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #70694, comment 5

    initial v1  
    1 `pthread_jit_write_protect_np` is only available in macOS 11 and later.
     1`pthread_jit_write_protect_np` is only available in macOS 11 and later. I could not find a web page stating that, but in the file /Library/Developer/CommandLineTools/SDKs/MacOSX12.1.sdk/usr/include/pthread/pthread.h on my system the function is declared as:
     2
     3{{{#!c
     4__API_AVAILABLE(macos(11.0))
     5__API_UNAVAILABLE(ios, tvos, watchos, driverkit)
     6void pthread_jit_write_protect_np(int enabled);
     7}}}
    28
    39The qemu developers deliberately removed the compatibility code that used to allow it to compile on macOS 10.x: