Dear,
I have developed a multithread program, Thread A wait for user's command and Thread B process some data collecting job.
Some exeception occured in a function in Thread B, every time the program call that function, it just executes a instruction (char c = info["hello"].at[0]), then Thread B receives signal SIGCONT. This information is got from GDB debug.
And i have used STL map in this function ( info is map<string, string>), but i didn't share it between the two thread, so it should be safe, right?
Does somebody know who send SIGCONT to Thread B? and why?
Best Wishes
CZ