System call vs Function call

后端 未结 10 696
遥遥无期
遥遥无期 2020-12-04 14:27

What is the difference between a system call and a function call? Is fopen() a system call or a function call?

10条回答
  •  旧巷少年郎
    2020-12-04 15:21

    If you're using Linux you can monitor system calls performed by an application:

    strace appname ...

    Its output might give you a good insight on what's going on within libc, and which functions are actually system calls.

提交回复
热议问题