LCOV - code coverage report
Current view: top level - arch/arm/core/aarch32 - __aeabi_atexit.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 2 0.0 %
Date: 2022-08-18 11:36:24 Functions: 0 1 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Copyright (c) 2016 Wind River Systems, Inc.
       3                 :            :  *
       4                 :            :  * SPDX-License-Identifier: Apache-2.0
       5                 :            :  */
       6                 :            : 
       7                 :            : /*
       8                 :            :  * @file
       9                 :            :  * @brief Basic C++ destructor module for globals for ARM
      10                 :            :  */
      11                 :            : 
      12                 :            : #include <toolchain.h>
      13                 :            : 
      14                 :            : EXTERN_C int __cxa_atexit(void (*destructor)(void *), void *objptr, void *dso);
      15                 :            : 
      16                 :            : /**
      17                 :            :  * @brief Register destructor for a global object
      18                 :            :  *
      19                 :            :  * @param objptr global object pointer
      20                 :            :  * @param destructor the global object destructor function
      21                 :            :  * @param dso Dynamic Shared Object handle for shared libraries
      22                 :            :  *
      23                 :            :  * Wrapper for __cxa_atexit()
      24                 :            :  */
      25                 :          0 : int __aeabi_atexit(void *objptr, void (*destructor)(void *), void *dso)
      26                 :            : {
      27                 :          0 :         return __cxa_atexit(destructor, objptr, dso);
      28                 :            : }

Generated by: LCOV version 1.14