I understood the mechanism of user threads mapping on kernel threads at thread level: now I'd like to understand the mechanism at process level.
- An user thread can access the resources of his "father" process: when the user thread is mapped on a kernel thread, what is of the user process resources? And more:
- We're talking of "kernel threads": threads of the same process share the resources of that process. Kernel threads have to work on different resources (the specific resources of the user process corrensponding to the user thread they're mapping). So each kernel thread belongs to a different "kernel process", that inherit the resources of the user process?
Sorry for my bad english, I hope you can understand.