12/2 Another pthreads question. I need to create two threads and
a shared mutex in my program. In some cases I can create the
first thread and the mutex, but I have problems with the
second call to pthread_create. If I use the mutex_destroy
at this point, my first thread doesn't like it. Is there a
way to kill (stop) a thread that I've created?
\_ Sounds like you need a reference count on your mutex.
Only a guess, as your description is totally vague.
\_ I'm basically allocating a bunch of stuff in main()
before any work starts. If any of the allocations
(threads, memory, mutex, etc) don't work, I try to
clean up the allocated memory before calling exit().
My problem is that I want to clean up the threads
before calling exit() but I don't known how to do
that. I'm looking for the thread equivalent of
pthread_mutex_destroy().
\_ dude, just read Code Complete. (get it on amazon)
cleanup is a trivial problem.
\_ Thanks. |