Is it possible to transfer a thread from one process to another?
No.
A transfer of thread from one process to another is NOT possible.
Reasons:
Threads share code, data, and files from parent process i.e. address and memory space. These become invalidated if the thread is transferred from one parent to another.
