Server IP : 15.235.198.142 / Your IP : 216.73.216.85 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/src/linux-headers-6.8.0-60/include/linux/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ /* * When building position independent code with GCC using the -fPIC option, * (or even the -fPIE one on older versions), it will assume that we are * building a dynamic object (either a shared library or an executable) that * may have symbol references that can only be resolved at load time. For a * variety of reasons (ELF symbol preemption, the CoW footprint of the section * that is modified by the loader), this results in all references to symbols * with external linkage to go via entries in the Global Offset Table (GOT), * which carries absolute addresses which need to be fixed up when the * executable image is loaded at an offset which is different from its link * time offset. * * Fortunately, there is a way to inform the compiler that such symbol * references will be satisfied at link time rather than at load time, by * giving them 'hidden' visibility. */ #pragma GCC visibility push(hidden)