INFO: Purpose of "Internal Linkage" & "No Linkage" InformationLast reviewed: September 4, 1997Article ID: Q66650 |
The information in this article applies to:
SUMMARYThe term "internal linkage" refers to the functions and labels in the code that the compiler fixes up, as best it can, at compile time. However, because the linker coalesces the various segment pieces together (that is, the linker places the _DATA items into the _DATA segment, the _TEXT items into the _TEXT segment, and so on), the linker must fix up the final addresses for these items. This information is "internal" to the function. The term "no linkage" refers to data (information) for which the linker has no use when it creates the final .EXE file, information such as structure names, typedefs, function parameters, local variable names, and so on. These values are resolved by the compiler (parameters or local variables that are stack based), or are used by other utilities after the linker fixes up the code (debugging and profiling information). Because this information may be required after linking and the compiler generates this information, the linker assigns it "no linkage" status and passes it through without change. For more information on linkage types, see "C Scope and Linkage: The Keys to Understanding Identifier Accessibility" in the November 1988 issue of the "Microsoft Systems Journal", or search the online documentation provided with all versions of Microsoft Visual C++ for the term "linkage." Keywords : CLngIss Version : MS-DOS:6.0,6.00a,6.00ax,7.0; WINDOWS:1.0,1.5; WINDOWS NT:1.0,2.0,2.1,4.0,5.0 Platform : MS-DOS NT WINDOWS Issue type : kbinfo |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |