[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]

General Programming Concepts: Writing and Debugging Programs


Chapter 19. Shared Libraries, Shared Memory, and The malloc Subsystem

This chapter provides information about the operating system facilities provided for sharing libraries and memory allocation.

The operating system provides facilities for the creation and use of dynamically bound shared libraries. Dynamic binding allows external symbols referenced in user code and defined in a shared library to be resolved by the loader at run time.

The shared library code is not present in the executable image on disk. Shared code is loaded into memory once in the shared library segment and shared by all processes that reference it. The advantages of shared libraries are:

The symbols defined in the shared library code that are to be made available to referencing modules must be explicitly exported using an exports file, unless the -bexpall options is used. The first line of the file optionally contains the path name of the shared library. Subsequent lines contain the symbols to be exported.


Related Information

Creating a Shared Library.

The ar command, as command, cc command, ld command.

The load subroutine, loadquery subroutine, loadbind subroutine, unload subroutine.

The XCOFF object (a.out) file format.


[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]