Results 1 to 3 of 3
Hello,
May i know what is the difference between systems calls and kernel threads. I googled for the answer but as a newbie i didnt get understand what the difference?...
- 12-11-2009 #1Linux User
- Join Date
- Aug 2008
- Location
- Trichy,India
- Posts
- 308
diff between "system calls" and "kernel threads"
Hello,
May i know what is the difference between systems calls and kernel threads. I googled for the answer but as a newbie i didnt get understand what the difference?Thanks in advance...
- 12-11-2009 #2
In a nutshell a thread is a special(lightweight) process while system calls are the way user space applications access low level resources(like hardware ). For example when you use a high level language and want to write to disk the compiler transforms the write instruction to the write system call and lets the Linux kernel manage the actual work.
Linux and me it's a love story
- 12-13-2009 #3Just Joined!
- Join Date
- Dec 2009
- Posts
- 8
System Calls are the interface for a user program to access functions inside the kernel space. That has nothing to do with kernel threads.


Reply With Quote