All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.qbicc.object.Linkage Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package org.qbicc.object;

/**
 *
 */
public enum Linkage {
    /**
     * Not visible outside of the current program module.
     */
    PRIVATE,
    /**
     * Symbol is visible as a local symbol in the object file; not linkable outside of the current program module.
     */
    INTERNAL,
    /**
     * External symbol is linked weakly.
     */
    WEAK,
    /**
     * Object goes into uninitialized ({@code bss}) section unless another definition overrides it; symbol is visible.
     */
    COMMON,
    /**
     * The object is externally visible.
     */
    EXTERNAL,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy