Linux System Calls
matheusmoreira.com·2d·
Discuss: Hacker News
🔌Operating system internals
Preview
Report Post

For a long time I felt there was something unique about Linux. Something was different, couldn’t quite figure out what it was. Only when I learned about Linux’s system call interface did I finally understand.

This article contains everything I’ve learned.

Why Linux system calls?

Programs usually interface with the kernel through libraries provided by the operating system, most commonly libc. Through these libraries, they have access to system functions. POSIX-compliant operating systems provide read, write and numerous others. Windows has the Win32 API and its many DLLs and functions.

These operating systems consist of strongly connected kernel and user space components, developed and distributed as one unit. The user space libraries are the only supported means of us…

Similar Posts

Loading similar posts...