Is it safe to call widget's signal function from multiple threads simultaneously? Will Qt use some kind of internal mutex to provide security of its own data structures when multiple threads call some widget's signal simultaneously?
As i understand, it is safe and N simultaneous calls of a signal function will lead to N sequential calls of a connected signal.
Am i correct?
P.S. The threads that call a signal function are created with boost. I think, this is not important for this question. I cannot use another threads, because that threads are not related to GUI only, but they serve many parts of a program.