4
votes

I'm trying to understand the system call interface and implementation in the Linux kernel. I know about entry.S and the relationship between libc headers and implementation. What I want to know is where in the kernel is the int 80h received for the first time i.e. the place that decides that it's actually the 80h interrupt. Can anyone point me to the LXR link for this please?

1
Hnn. It does help actually. It appears that 0x80 is no longer used. It's now a SYSENTER/SYSEXIT based approach which is explained very nice here: articles.manugarg.com/systemcallinlinux2_6.htmlrecluze

1 Answers