Skip to content
New issue

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

Concurrency support #1

Open
dz333 opened this issue Aug 22, 2018 · 0 comments
Open

Concurrency support #1

dz333 opened this issue Aug 22, 2018 · 0 comments

Comments

@dz333
Copy link
Collaborator

dz333 commented Aug 22, 2018

From @gharrma on December 14, 2016 1:13

This includes:

  • Methods marked with the synchronized keyword (use try-finally)
  • Synchronized blocks (use try-finally)
  • Fields marked with the volatile keyword
  • (Probably) compile the garbage collector with new flags
  • Make sure JNI environment objects are thread-local
  • Some reasonable approximation of the Java memory model
  • Thread-safe runtime code (especially jni.cpp, jvm.cpp, and unsafe.cpp).

Each class instance will need its own mutex and condition variable---ideally initialized lazily!

Copied from original issue: gharrma/polyllvm#5

dz333 pushed a commit that referenced this issue Oct 30, 2018
fixing makefile bug where patches were applied after class file compi…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant