µOS++ IIIe Reference 7.0.0
The third edition of µOS++, a POSIX inspired open source framework, written in C++
Loading...
Searching...
No Matches
atexit.h
Go to the documentation of this file.
1/*
2 * This file is part of the µOS++ distribution.
3 * (https://github.com/micro-os-plus)
4 * Copyright (c) 2016 Liviu Ionescu.
5 *
6 * Permission is hereby granted, free of charge, to any person
7 * obtaining a copy of this software and associated documentation
8 * files (the "Software"), to deal in the Software without
9 * restriction, including without limitation the rights to use,
10 * copy, modify, merge, publish, distribute, sublicense, and/or
11 * sell copies of the Software, and to permit persons to whom
12 * the Software is furnished to do so, subject to the following
13 * conditions:
14 *
15 * The above copyright notice and this permission notice shall be
16 * included in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 * OTHER DEALINGS IN THE SOFTWARE.
26 */
27
28#if defined(__ARM_EABI__)
29
30// ----------------------------------------------------------------------------
31
32#if !defined(_LITE_EXIT)
33#define _LITE_EXIT
34#endif
35
36/*
37 * Common definitions for atexit-like routines
38 */
39
40#if defined(__cplusplus)
41extern "C"
42{
43#endif
44
46 {
50 };
51
52 extern void
53 __call_exitprocs (int, void*);
54
55 typedef void
56 (*exit_func_t) (void);
57
58 extern int
59 __register_exitproc (int, exit_func_t fn, void*, void*);
60
61 extern void
62 os_run_fini_array (void);
63
64#if defined(__cplusplus)
65}
66#endif
67
68// ----------------------------------------------------------------------------
69
70#endif /* defined(__ARM_EABI__) */
void(* exit_func_t)(void)
Definition atexit.h:56
void __call_exitprocs(int, void *)
void os_run_fini_array(void)
Definition startup.cpp:211
__atexit_types
Definition atexit.h:46
@ __et_onexit
Definition atexit.h:48
@ __et_atexit
Definition atexit.h:47
@ __et_cxa
Definition atexit.h:49
int __register_exitproc(int, exit_func_t fn, void *, void *)