kekyo / IL2C

IL2C - A translator for ECMA-335 CIL/MSIL to C language.
Apache License 2.0
401 stars 36 forks source link

Support synchronization features. #51

Open kekyo opened 6 years ago

kekyo commented 6 years ago

Basic features

Advanced features

kekyo commented 5 years ago

Related #50

kekyo commented 5 years ago

41cf424cffe5668d98fe0258ed1c012958b7f09f

Monitor lock feature implemented 🎉

kekyo commented 5 years ago

It's bit difference handling.


Background: I think about we'll use monitor lock with custom allocated instances instead a string instance or same as.

// .NET can it, but we'll often don't this:
lock ("ABC")
{ ... }

lock (typeof(Hoge))
{ ... }