C How the child thread notifies the main thread, while the main thread is still running?

62 Views Asked by At

I am working on a project of multi-client server chatting using socket programming based on C. I want to make a thread notify the main thread after it has finished: but I don't want the main thread to wait until that( the child thread) is finished.

1

There are 1 best solutions below

0
On

Use a C pipe.

The child thread writes to the pipe if data are available. The main thread can wait on the pipe to get notified.

If you want the main thread to process other data in between, then let these other input data notify the main thread via the same pipe.