Is int 0x80 the only interrupt number used when programming a Linux build?

We use only 80H in assembly programming to request a service for the linux kernel?

What is the usefulness of other interrupt numbers on Linux?

I am switching from windows to linux.

+4
source share
1 answer

int3(debug breakpoint) and int 80h(old system call) are the two software interrupts commonly used on Linux. Hardware interrupts are used by device drivers, but they probably don't concern you.

, 32- ​​ , , , (syscall, sysenter int 80h). 64- syscall, . , 64- 32 .

, Linux. c, , , - . , , , , /.

+2
source

All Articles