I have to implement kernel level thread but while searching on the net I found that there are three ways to create kernel level thread in linux:
- NPTL
- kthread
- linuxThreads
It was written somewhere that linuxThreads are now abandoned. But I am unable to find current support of NPTL & kthread. Also I am unable to find any source that can simply explain me how to use their functionality.
Which is the currently supported and good library to use kernel level thread?
Also pls share any resource for installing these library and also using them?