summaryrefslogtreecommitdiff
path: root/libc/test/src/stdlib/at_quick_exit_test.cpp
AgeCommit message (Collapse)Author
2024-11-07[libc] Add the `src/stdlib/_Exit.h` header to `at_quick_exit_test.cpp` and ↵Job Henandez Lara
`atexit_test.cpp` (#115351) Hello, I merged this https://github.com/llvm/llvm-project/pull/114904 a few mins ago and the tests failed because i did not add the header `src/stdlib/_Exit.h` in `at_quick_exit_test.cpp` and `atexit_test.cpp`. I ran both builds/tests and everything was good. thanks
2024-11-07[libc] Remove _Exit proxy func header and use LIBC_NAMESPACE::_Exit in tests ↵Job Henandez Lara
(#114904) This improves/fixes this pr https://github.com/llvm/llvm-project/pull/114718. In this PR we removed the _Exit proxy func because it was not needed. Instead we used `LIBC_NAMESPACE::_Exit`
2024-11-03[libc] Add proxy headers to handle memory allocation associated with the ↵Job Henandez Lara
header `#include <stdlib.h> (#114690) This finishes the work from https://github.com/llvm/llvm-project/pull/114453 by adding proxy headers for `malloc`, `realloc`, `free` and `aligned_alloc`.
2024-06-06[libc] at_quick_exit function implemented (#94317)aaryanshukla
- added at_quick_exit function - used helper file exit_handler which reuses code from atexit - atexit now calls helper functions from exit_handler - test cases and dependencies are added --------- Co-authored-by: Aaryan Shukla <aaryanshukla@google.com>