I\'m writing a multi-threaded C++ program. I plan on killing threads. However, I am also using a ref-counted GC. I\'m wondering if stack allocated objects get destructed whe
I doubt it - pthread is a pure C api, so I doubt it would have any mechanism to unwind the stack of the thread.