vDSO
Today I learned about the virtual dynamic shared object mechanism of Linux
Faster than syscall
Some routines might be called a lot of time. But because a syscall involves an interrupt, it's slow. Therefore, time related kernel methods can be called directly in user space thanks to vDSO.