Apple Shared Library Manager (ASLM) extension is a piece of code that lets other programs share common code. Historically each application was required to link in any necessary library modules at compile time. The shared library manager lets any common code be loaded into memory only once by all running applications and then shared by others who also need to make the same calls thus reducing the memory foot print for application.
ASLM ships with several Apple as well as some third-party products. Any application that requires ASLM ships with a copy of the application. ASLM maintains the relationship of applications to shared libraries at the system level.
Shared Libraries
A shared library is a library of functions or classes (for C++ programmers) that are compiled, linked, and stored separately from the clients (applications) that use them. By accessing the functions or classes that are stored in a shared library, a client (application) can call functions that are not part of its executable code. Furthermore, functions or classes that are stored in a shared library can be called by different applications that are running at the same time.
Because shared libraries can contain shared code and are loaded and linked at run time, they save enormous amounts of RAM and disk space. Shared libraries eliminate the necessity for keeping multiple copies of code in memory when multiple applications use the same code. Shared libraries help software developers design independent, modular, compact libraries that applications can share. It also helps software designers develop their products faster, and it makes the products easier to improve and maintain.
A shared library file is a binary file that can contain object code for functions, classes, methods (member functions), data, and resources. A shared library file can contain one or more shared libraries. When a shared library file is made available, developers can share, and dynamically link with, the code stored in the shared library.