Today I came across POSIX thread attributes, they are a little weird work with, when you are using them for the first time. I am a little confused about pthread_attr_setdetachstate, which states that:
POSIX threads are in Join state (with the thread which created it) by default but in order to join them, we have to explicitly call
pthread_join()for joining the thread.
Do we need to call pthread_detach explicitly even when the thread attribute is set to detach?