Hi, I'm a new developer of CommonC++ project.
There are many differences from posix to Win32. Why mutex in Win32 are implemented using Event and counters? There is a native mutex object in Win32. Why not using another implementation.
freddy77
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I saw in thanks that Mutex has been reimplemented. Older Mutex used CRITICAL_SECTION. Why can't do a TryEnterMutex portably with CRITICAL_SECTION. But we can use a Mutex object instead.
freddy77
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, I'm a new developer of CommonC++ project.
There are many differences from posix to Win32. Why mutex in Win32 are implemented using Event and counters? There is a native mutex object in Win32. Why not using another implementation.
freddy77
I saw in thanks that Mutex has been reimplemented. Older Mutex used CRITICAL_SECTION. Why can't do a TryEnterMutex portably with CRITICAL_SECTION. But we can use a Mutex object instead.
freddy77