Search code examples
linuxmultithreadingvirtual-address-space

Is it possible to run each thread in a separate virtual address space?


On Linux, is it possible to have threads of a process running on different virtual address spaces? If so, how?


Solution

  • Although its not possible to have threads in the same process with different virtual address spaces, its still possible to have Thread Local Storage. You might be interested in that.