You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OSX does not have pthread_getattr_np, but it does have pthread_getstacksize_np and a similar function to get the stackaddr. These should be used to calculate the correct stacksize and replace the current mechanism, which uses an educated (somewhat) guess.
This is necessary to prevent crashes for patterns that require a lot of recursion.
The text was updated successfully, but these errors were encountered:
OSX does not have pthread_getattr_np, but it does have pthread_getstacksize_np and a similar function to get the stackaddr. These should be used to calculate the correct stacksize and replace the current mechanism, which uses an educated (somewhat) guess.
This is necessary to prevent crashes for patterns that require a lot of recursion.
The text was updated successfully, but these errors were encountered: