I am using pthreads on Linux. From the documentation, it is not clear to me when it is safe to call pthread_attr_destroy
on the attributes I use to create a new thread? Can I do it immediately after pthread_create
returns or do I have to wait until the thread is joined or detached?
Thanks in advance, Christoph