Modified 2024-08-11

vDSO

Today I learned about the virtual dynamic shared object mechanism of Linux
https://man7.org/linux/man-pages/man7/vdso.7.html

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.