- 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>
25 lines
810 B
C++
25 lines
810 B
C++
//===-- Implementation of quick_exit --------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "src/stdlib/quick_exit.h"
|
|
#include "src/__support/OSUtil/exit.h"
|
|
#include "src/__support/common.h"
|
|
#include "src/stdlib/exit_handler.h"
|
|
|
|
// extern "C" void __cxa_finalize(void *);
|
|
namespace LIBC_NAMESPACE {
|
|
|
|
extern ExitCallbackList at_quick_exit_callbacks;
|
|
|
|
[[noreturn]] LLVM_LIBC_FUNCTION(void, quick_exit, (int status)) {
|
|
call_exit_callbacks(at_quick_exit_callbacks);
|
|
internal::exit(status);
|
|
}
|
|
|
|
} // namespace LIBC_NAMESPACE
|