Conversation

Replying to
Assuming the runtime itself isn’t MT, this would require a user using both MT and fork mechanisms. Not saying this is impossible or doesn’t happen, but I would think there are few eg Ruby programs doing this, so the breaking change might not be a hard ask.
2
Replying to
One of the motivations for actually wanting this to work is allowing whether something is internally MT to be treated purely as an implementation detail the rest of program doesn't have to know about.
1
1
Replying to and
My preferred solution to that problem is deprecating fork and treating nontrivial use of fork as the nasty detail rest of program has to tiptoe around, but languages that chose to expose fork rejected that. 😣
1
1
Replying to and
So I think where the problem is really hard to assign blame/responsibility for fixing is where a program in an affected language (Ruby?) uses fork and indirectly uses a module with FFI to a C library using threads they weren't even aware of.
1
1
Replying to and
It's a very common issue but the race condition often has a very low chance of happening in practice, so it mostly goes unnoticed. Users will notice that applications sometimes fail to start or perform an operation but it's hard for them to figure out what could be causing that.
1
2
Replying to and
Even with malloc, applications often don't trigger the race condition regularly. In our experience some cases only happen 1/20 times, etc. Android uses a fork-based spawning model by default and they had to make everything used by the app runtime work, but not beyond that.
1
1
What we dislike about the Zygote spawning model existing is that it makes it easy for them to implement optimizations simply by loading libraries and doing initialization in the Zygote. Since they only run the code once per architecture during boot, it's not as heavily optimized.
1
Show replies