<- previous    index    next ->

Lecture 12 Linux kernel calls

To understand Linux  System Calls, learn from the UMBC Expert: Gary Burt.
CMSC 313 -- System Calls
System Call Table

When making Linux kernel calls from a "C" program, you will need
#include <unistd.h>

A sample syscall1.asm
demonstrates file open (unistd.h failed), file read (in hunks of 8192)
and file write (the whole file!)

    <- previous    index    next ->

Other links

Go to top