TOC
Previous
Next
Shared Library Concept and Advantages
Create single copy of all object modules,
which is shared by all applications at run-time
Advantages:
-
Programs do not need to be relinked to see changes in library code.
(Because object modules are not copied into executable files)
-
Programs are smaller:
disk space and virtual memory requirements are reduced.
(C) 2006, Michael Kerrisk