pub const STV_DEFAULT: u8 = 0;
Expand description
STV_* define constants for the ELF Symbol’s st_visibility (encoded in the st_other field). The visibility of symbols with the STV_DEFAULT attribute is as specified by the symbol’s binding type. That is, global and weak symbols are visible outside of their defining component (executable file or shared object). Local symbols are hidden, as described below. Global and weak symbols are also preemptable, that is, they may by preempted by definitions of the same name in another component.