I know that fibers run within the context of a thread. They are user-level only.
I know threads can be user level or kernel level.
When you create a thread in a user-level application it is user-level also?
Can you create a kernel-level thread in your user application?
These user-level threads are also scheduled by the kernel?
When you call CreateThread in .NET how does the kernel come into play? Does the CreateThread function need to go through the susbsystem dll to the executive and all the way down to the kernel for creating a user-level thread?