VirtualBox

source: vbox/trunk/include/iprt/initterm.h@ 35199

Last change on this file since 35199 was 33540, checked in by vboxsync, 14 years ago

*: spelling fixes, thanks Timeless!

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.5 KB
Line 
1/** @file
2 * IPRT - Runtime Init/Term.
3 */
4
5/*
6 * Copyright (C) 2006-2009 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_initterm_h
27#define ___iprt_initterm_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31
32RT_C_DECLS_BEGIN
33
34/** @defgroup grp_rt IPRT APIs
35 * @{
36 */
37
38/** @defgroup grp_rt_initterm Init / Term
39 * @{
40 */
41
42#ifdef IN_RING3
43/**
44 * Initializes the runtime library.
45 *
46 * @returns iprt status code.
47 */
48RTR3DECL(int) RTR3Init(void);
49
50
51/**
52 * Initializes the runtime library and try initialize SUPLib too.
53 *
54 * @returns IPRT status code.
55 *
56 * @remarks Failure to initialize SUPLib is ignored.
57 */
58RTR3DECL(int) RTR3InitAndSUPLib(void);
59
60/**
61 * Initializes the runtime library passing it the program path.
62 *
63 * @returns IPRT status code.
64 * @param pszProgramPath The path to the program file.
65 */
66RTR3DECL(int) RTR3InitWithProgramPath(const char *pszProgramPath);
67
68/**
69 * Initializes the runtime library passing it the program path,
70 * and try initialize SUPLib too (failures ignored).
71 *
72 * @returns IPRT status code.
73 * @param pszProgramPath The path to the program file.
74 *
75 * @remarks Failure to initialize SUPLib is ignored.
76 */
77RTR3DECL(int) RTR3InitAndSUPLibWithProgramPath(const char *pszProgramPath);
78
79/**
80 * Initializes the runtime library and possibly also SUPLib too.
81 *
82 * Avoid this interface, it's not considered stable.
83 *
84 * @returns IPRT status code.
85 * @param iVersion The interface version. Must be 0 atm.
86 * @param pszProgramPath The program path. Pass NULL if we're to figure it out ourselves.
87 * @param fInitSUPLib Whether to initialize the support library or not.
88 */
89RTR3DECL(int) RTR3InitEx(uint32_t iVersion, const char *pszProgramPath, bool fInitSUPLib);
90
91/**
92 * Terminates the runtime library.
93 */
94RTR3DECL(void) RTR3Term(void);
95
96#endif /* IN_RING3 */
97
98
99#ifdef IN_RING0
100/**
101 * Initializes the ring-0 driver runtime library.
102 *
103 * @returns iprt status code.
104 * @param fReserved Flags reserved for the future.
105 */
106RTR0DECL(int) RTR0Init(unsigned fReserved);
107
108/**
109 * Terminates the ring-0 driver runtime library.
110 */
111RTR0DECL(void) RTR0Term(void);
112
113/**
114 * Forcibily terminates the ring-0 driver runtime library.
115 *
116 * This should be used when statically linking the IPRT. Module using dynamic
117 * linking shall use RTR0Term. If you're not sure, use RTR0Term!
118 */
119RTR0DECL(void) RTR0TermForced(void);
120#endif
121
122#ifdef IN_RC
123/**
124 * Initializes the raw-mode context runtime library.
125 *
126 * @returns iprt status code.
127 *
128 * @param u64ProgramStartNanoTS The startup timestamp.
129 */
130RTRCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS);
131
132/**
133 * Terminates the raw-mode context runtime library.
134 */
135RTRCDECL(void) RTRCTerm(void);
136#endif
137
138
139/**
140 * Termination reason.
141 */
142typedef enum RTTERMREASON
143{
144 /** Normal exit. iStatus contains the exit code. */
145 RTTERMREASON_EXIT = 1,
146 /** Any abnormal exit. iStatus is 0 and has no meaning. */
147 RTTERMREASON_ABEND,
148 /** Killed by a signal. The iStatus contains the signal number. */
149 RTTERMREASON_SIGNAL,
150 /** The IPRT module is being unloaded. iStatus is 0 and has no meaning. */
151 RTTERMREASON_UNLOAD
152} RTTERMREASON;
153
154/** Whether lazy clean up is Okay or not.
155 * When the process is exiting, it is a waste of time to for instance free heap
156 * memory or close open files. OTOH, when the runtime is unloaded from the
157 * process, it is important to release absolutely all resources to prevent
158 * resource leaks. */
159#define RTTERMREASON_IS_LAZY_CLEANUP_OK(enmReason) ((enmReason) != RTTERMREASON_UNLOAD)
160
161
162/**
163 * IPRT termination callback function.
164 *
165 * @param enmReason The cause of the termination.
166 * @param iStatus The meaning of this depends on enmReason.
167 * @param pvUser User argument passed to RTTermRegisterCallback.
168 */
169typedef DECLCALLBACK(void) FNRTTERMCALLBACK(RTTERMREASON enmReason, int32_t iStatus, void *pvUser);
170/** Pointer to an IPRT termination callback function. */
171typedef FNRTTERMCALLBACK *PFNRTTERMCALLBACK;
172
173
174/**
175 * Registers a termination callback.
176 *
177 * This is intended for performing clean up during IPRT termination. Frequently
178 * paired with lazy initialization thru RTOnce.
179 *
180 * The callbacks are called in LIFO order.
181 *
182 * @returns IPRT status code.
183 *
184 * @param pfnCallback The callback function.
185 * @param pvUser The user argument for the callback.
186 *
187 * @remarks May need to acquire a fast mutex or critical section, so use with
188 * some care in ring-0 context.
189 *
190 * @remarks Be very careful using this from code that may be unloaded before
191 * IPRT terminates. Unlike some atexit and on_exit implementations,
192 * IPRT will not automatically unregister callbacks when a module gets
193 * unloaded.
194 */
195RTDECL(int) RTTermRegisterCallback(PFNRTTERMCALLBACK pfnCallback, void *pvUser);
196
197/**
198 * Deregister a termination callback.
199 *
200 * @returns VINF_SUCCESS if found, VERR_NOT_FOUND if the callback/pvUser pair
201 * wasn't found.
202 *
203 * @param pfnCallback The callback function.
204 * @param pvUser The user argument for the callback.
205 */
206RTDECL(int) RTTermDeregisterCallback(PFNRTTERMCALLBACK pfnCallback, void *pvUser);
207
208/**
209 * Runs the termination callback queue.
210 *
211 * Normally called by an internal IPRT termination function, but may also be
212 * called by external code immediately prior to terminating IPRT if it is in a
213 * better position to state the termination reason and/or status.
214 *
215 * @param enmReason The reason why it's called.
216 * @param iStatus The associated exit status or signal number.
217 */
218RTDECL(void) RTTermRunCallbacks(RTTERMREASON enmReason, int32_t iStatus);
219
220/** @} */
221
222/** @} */
223
224RT_C_DECLS_END
225
226
227#endif
228
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette