Kernel threads

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
Thomas

Kernel threads

Post by Thomas »

A not too smart question (as always... :) Kernel threads - how should they be implemented, as normal user level tasks with high privileges, kernel level tasks or what ?
ATG

RE:Kernel threads

Post by ATG »

>On 2001-03-21 14:53:21, Thomas wrote:
>A not too smart question (as always... :) Kernel
threads - how should they be implemented, as
normal user level tasks with high privileges,
kernel level tasks or what ?
<<<<

Well, the nature of the thread is that it is a
"sub-task".

It is simply a second stack and state that operates
within the same "context". It has the same PID/Files/memory
as other threads...

The low level details of this are quite ugly on the
x86...
Post Reply