|
|
|
|
|
by arohner
4629 days ago
|
|
Depends on the app, and your use case, and the CPU, etc. YMMV. For a long time though, the Linux kernel has been compiled to optimize code-size rather than 'performance' (according to GCC). Why? Because the kernel gets involved in every syscall the OS makes, so the kernel code gets paged in and out very frequently. Loading a little less code from RAM means everything goes faster. |
|