MCPcopy Create free account
hub / github.com/Simple-XX/SimpleKernel / CppDeInit

Function CppDeInit

src/libcxx/kstd_libcxx.cpp:230–234  ·  view source on GitHub ↗

* c++ 全局对象析构 */

Source from the content-addressed store, hash-verified

228 * c++ 全局对象析构
229 */
230auto CppDeInit() -> void {
231 // 调用析构函数
232 std::for_each(&__fini_array_start, &__fini_array_end,
233 [](function_t func) { (func)(); });
234}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected