Hi all,

I'm working in a library where objects are created and moved to a specific thread (global reference). The library must support multi threading this means that different objects can be created simultaneously and moved to this global thread instance.
Do I need to have a lock to protect my global thread when moving those objects?

I understand that moveToThread is not thread-safe if trying to move the same object but how about the thread instance.

Thanks
Montez