Find the answer to your Linux question:
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?...
  1. #1
    Linux 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...

  2. #2
    Linux Engineer khafa's Avatar
    Join Date
    Apr 2008
    Location
    Tokyo, Japan
    Posts
    858
    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

  3. #3
    Just 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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...