Table of Contents
    Home / Definitions / Dynamic shared object – DSO
    Development 1 min read

    A dynamic shared object (DSO) is an object file that is intended to be used simultaneously (or shared by) multiple applications while they’re executing. A DSO can be used in place of archive libraries and will minimize overall memory usage because code is shared. Two executables that use the same DSO and that run simultaneously have only one copy of the shared components loaded into memory.
    [Source: Adapted from SGI]

    Was this Article helpful? Yes No