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
{{ message }}
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
When a new thread is created, a threadId from 1 to 63 is assigned to that thread.
When a thread exits, its threadId is not released, therefore the next thread created will have an increased threadId value. When the threadId reaches the value 64 the JXcore engine initialization for that thread will fail.
The text was updated successfully, but these errors were encountered:
The issue is now fixed. There is still the 64 threads limit, but now we recycle the thread id of the thread when it exits. More testing will be needed to make sure the fix hasn't unwanted side effects.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When a new thread is created, a threadId from 1 to 63 is assigned to that thread.
When a thread exits, its threadId is not released, therefore the next thread created will have an increased threadId value. When the threadId reaches the value 64 the JXcore engine initialization for that thread will fail.
The text was updated successfully, but these errors were encountered: