Re: Question about atomic operation and Qt's data sharing.
Originally Posted by The Storm
The big question here is can I share copy instances of my class without the need of mutex or other type locking?
Atomic operation are useful when implement a implicitly shared classes.
When you need share copy instances of any class between difernet threads you need use a mutex or similar classes. to sincronize the access to instances
Bookmarks