What is __kernel_vsyscall?

前端 未结 4 757
一个人的身影
一个人的身影 2020-12-31 07:10

I got a core that looks very different from the ones I usually get - most of the threads are in __kernel_vsyscall() :

  9 process 11334  0xffffe410 in __kern         


        
4条回答
  •  旧巷少年郎
    2020-12-31 07:51

    __kernel_vsyscal is the method used by linux-gate.so (a part of the Linux kernel) to make a system call using the fastest available method, preferably the sysenter instruction. The thing is properly explained by Johan Petersson.

提交回复
热议问题