4 * @brief Library (de-)initialization.
9 * Copyright (C) 2005-2006 Martin Willi
10 * Copyright (C) 2005 Jan Hutter
11 * Hochschule fuer Technik Rapperswil
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 #include <utils/logger_manager.h>
25 #include <utils/leak_detective.h>
28 * Called whenever the library is linked from a process
30 void __attribute__ ((constructor
)) library_init(void)
32 logger_manager_init();
33 leak_detective_init();
37 * Called whenever the library is unlinked from a process
39 void __attribute__ ((destructor
)) library_cleanup(void)
41 leak_detective_cleanup();
42 logger_manager_cleanup();