Hi all,

I have two QProcess objects. They run two different programs and their finished signals were handled.
p1_handlefinished function is for first object and p2_handlefinished function is for second object.

In p1_handlefinished and p2_handlefinished functions, i call a function myfunc;

Should a lock(mutex) control accessing to myfunc or it doesn't need?

I use QT4 on Linux.