//===-- Classes to capture properites of linux applications -----*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_LIBC_CONFIG_LINUX_APP_H #define LLVM_LIBC_CONFIG_LINUX_APP_H #include "src/__support/macros/config.h" #include "src/__support/macros/properties/architectures.h" #include <stdint.h> namespace LIBC_NAMESPACE_DECL { // Data structure to capture properties of the linux/ELF TLS image. struct TLSImage { … }; // Linux manpage on `proc(5)` says that the aux vector is an array of // unsigned long pairs. // (see: https://man7.org/linux/man-pages/man5/proc.5.html) AuxEntryType; // Using the naming convention from `proc(5)`. // TODO: Would be nice to use the aux entry structure from elf.h when available. struct AuxEntry { … }; struct Args { … }; // Data structure which captures properties of a linux application. struct AppProperties { … }; [[gnu::weak]] extern AppProperties app; // The descriptor of a thread's TLS area. struct TLSDescriptor { … }; // Create and initialize the TLS area for the current thread. Should not // be called before app.tls has been initialized. void init_tls(TLSDescriptor &tls); // Cleanup the TLS area as described in |tls_descriptor|. void cleanup_tls(uintptr_t tls_addr, uintptr_t tls_size); // Set the thread pointer for the current thread. bool set_thread_ptr(uintptr_t val); } // namespace LIBC_NAMESPACE_DECL #endif // LLVM_LIBC_CONFIG_LINUX_APP_H