If a user application makes a system call , a software interrupt/exception is triggered. How can I see the source code for generating a software interrupt ?
|
|
long long ago, there is an you can get the code by dumping
for more information check this article |
|||
|
|
|
It is explained in Linux Assembly Howto. And you should read wikipedia syscall page (and also about VDSO), and also intro(2) & syscalls(2) man pages. See also this answer and this one. Look also inside Gnu Libc & musl-libc source code. Learn also to use See also the calling conventions and Application Binary Interface specification relevant to your system. For x86-64 it is here. |
||||
|
|
|
A software interrupt can be triggered with the Intel x86 assembly instruction
where This is the most general way to do syscalls because it is independent of external libraries, like libc, and you can implement this in C/C++ if you need to by using inline assembly. |
|||
|
