summaryrefslogtreecommitdiff
path: root/libc/src/__support/OSUtil/linux/exit.cpp
AgeCommit message (Collapse)Author
2024-12-03libc: fixup include path and bazel stale comments (#118510)Nick Desaulniers
Downstream builders are having issues with this local include. Use a fuller path that's more standard throughout the codebase. Also some of the comments in the bazel overlay are stale. Remove them. Reported-by: Brooks Moses <bmoses@google.com>
2024-07-12[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98597)Petr Hosek
This is a part of #97655.
2024-07-12Revert "[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace ↵Mehdi Amini
declaration" (#98593) Reverts llvm/llvm-project#98075 bots are broken
2024-07-11[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98075)Petr Hosek
This is a part of #97655.
2024-05-31[libc] restored original no_stack_protector syntax (#94005)RoseZhang03
forward fix for #93620 -GCC doesn't recognize [[clang:: ']] prefix, so restored the original __attribute__ syntax
2024-05-31[libc] added quick_exit function (#93620)RoseZhang03
- In /libc/src/__support/ OSUtil, changed quick_exit to just exit, and put in namespace LIBC_NAMESPACE::internal. - In /libc/src/stdlib added quick_exit - Added test files for quick_exit