You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a lot of variables declared as volatile, but they don't be access via atomic_load/atomic_store. Looks like there is no basic atomic operation support. How to add the support when C++11 is unavailable?
Use compiler extensions?
Implement SrtAtomic by Mutex?
The text was updated successfully, but these errors were encountered:
Good question. This is something we were thinking about as well (see #1813).
The best way would be to find some C++03 library for atomic, if there is any.
The fallback scenario is implementing SrtAtomic by Mutex. Likely this will provide some burden on the performance.
There are a lot of variables declared as volatile, but they don't be access via atomic_load/atomic_store. Looks like there is no basic atomic operation support. How to add the support when C++11 is unavailable?
The text was updated successfully, but these errors were encountered: