1 /* Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License
5 * as published by the Free Software Foundation; either version 2
6 * of the License, or (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 extern int opt_verbose
;
28 enum __lttng_print_type
{
39 * Internal function for printing message
40 * depending on command line option and verbosity.
42 void __lttng_print(enum __lttng_print_type type
, const char *fmt
, ...)
48 if (type
== PRINT_MSG
|| (opt_verbose
&& type
== PRINT_DBG
)) {
49 vfprintf(stdout
, fmt
, ap
);
50 } else if (type
!= PRINT_MSG
&& type
!= PRINT_DBG
) {
51 vfprintf(stderr
, fmt
, ap
);
58 #define MSG(fmt, args...) __lttng_print(PRINT_MSG, fmt "\n", ## args)
59 #define ERR(fmt, args...) __lttng_print(PRINT_ERR, "Error: " fmt "\n", ## args)
60 #define WARN(fmt, args...) __lttng_print(PRINT_WARN, "Warning: " fmt "\n", ## args)
61 #define BUG(fmt, args...) __lttng_print(PRINT_BUG, "BUG: " fmt "\n", ## args)
62 #define DBG(fmt, args...) __lttng_print(PRINT_DBG, "DEBUG: " fmt "\n", ## args)
64 #endif /* _LTTNGERR_H */
This page took 0.030671 seconds and 5 git commands to generate.