We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Update the thread spawning code in c-main.h.
i=0
The 0th thread should be "self," a.k.a. the main thread. Use pthread_self()?
pthread_self()
i=1
The first thread should be the realtime GC thread. This thread should begin executing performGC in a loop after booting. See issue #10.
performGC
The text was updated successfully, but these errors were encountered:
bhargavshivkumar
No branches or pull requests
Update the thread spawning code in c-main.h.
Special case where
i=0
The 0th thread should be "self," a.k.a. the main thread. Use
pthread_self()
?Special case where
i=1
The first thread should be the realtime GC thread. This thread should begin executing
performGC
in a loop after booting. See issue #10.The text was updated successfully, but these errors were encountered: