lichtjiang
Programmer
How threads communicate in perl? For example, if there are 3 threads, A, B, C. C needs to know when A and B finish so that it terminates afterwards. How can C know such status info nicely? I guess there are two ways theoretically. One is gets status info from each other thread. And the other is to get this from the process that creates these threads. Any thought? Thanks a lot!