Rico Felix wrote:If that was your question then from the following snapshot it can be seen that yes the method was able to return control to the calling method and the lock was released even though the thread was still in a runnable state which was spawned from within the method...
Thanks for the investigation ... have a
cow.
Having said that, keep in mind that the premise of parent / child threads, implied by the OP in the first post, doesn't exist. Yes, the newly created thread can inherit the priority, or the thread group, etc., but it isn't really a child thread. A thread is a thread is a thread.
When you create a thread, it is a new thread. And there isn't much (or any) relationship between the creating thread and the newly created thread. So, the newly created thread is just like any other thread, and will behave like any other thread.
Henry