Let's talk about vDSO.

This commit is contained in:
Philippe Pittoli 2025-09-26 18:46:32 +02:00
parent 8b2d60cd4e
commit 4fefb2ee2c

8
notes/misc.md Normal file
View file

@ -0,0 +1,8 @@
# vDSO (7) - virtual (ELF) dynamic shared object
This library replaces some syscalls in order to get values from shared
memory pages between all applications, preventing context switches and
improving overall performances.
Example: current time is the same for all applications, thus the time
is written in a shared memory space that all applications can access at
any time without sending a request to the kernel.