Uh oh!
There was an error while loading. Please reload this page.
[mono][ios] Call mono_gc_init_finalizer_thread to allow gc thread creation - #91785
Conversation
ghost
commented
Sep 8, 2023
Tagging subscribers to 'os-ios': @steveisok, @akoeplinger, @kotlarmilos Issue DetailsThis PR modifies the Fixes #90012
|
kotlarmilos
commented
Sep 8, 2023
/azp run runtime-ioslike |
|
Azure Pipelines successfully started running 1 pipeline(s). |
lateralusX
left a comment
There was a problem hiding this comment.
LGTM! Please verify that the GC dump tests now runs on iOS/tvOS devices on CI.
kotlarmilos
commented
Sep 8, 2023
The test has executed successfully https://helix.dot.net/api/jobs/831b21f1-4098-4f60-a174-033d11d5c3cf/workitems/tracing_eventpipe?api-version=2019-06-17. |
This PR modifies the
runtime.mApple template to call themono_gc_init_finalizer_thread. This function enables the creation of the finalizer thread. If the runtime is compiled with the lazy gc thread creation flag, embedders must call this function to initiate the finalizer. Otherwise, the function does nothing and the runtime creates the finalizer thread automatically.Fixes#90012