| 1 | /* $Id: debug.h,v 1.10 2005/05/08 04:32:43 reinelt Exp $ |
|---|
| 2 | * |
|---|
| 3 | * debug messages |
|---|
| 4 | * |
|---|
| 5 | * Copyright (C) 1999, 2000 Michael Reinelt <reinelt@eunet.at> |
|---|
| 6 | * Copyright (C) 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net> |
|---|
| 7 | * |
|---|
| 8 | * This file is part of LCD4Linux. |
|---|
| 9 | * |
|---|
| 10 | * LCD4Linux is free software; you can redistribute it and/or modify |
|---|
| 11 | * it under the terms of the GNU General Public License as published by |
|---|
| 12 | * the Free Software Foundation; either version 2, or (at your option) |
|---|
| 13 | * any later version. |
|---|
| 14 | * |
|---|
| 15 | * LCD4Linux is distributed in the hope that it will be useful, |
|---|
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 18 | * GNU General Public License for more details. |
|---|
| 19 | * |
|---|
| 20 | * You should have received a copy of the GNU General Public License |
|---|
| 21 | * along with this program; if not, write to the Free Software |
|---|
| 22 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
|---|
| 23 | * |
|---|
| 24 | * |
|---|
| 25 | * $Log: debug.h,v $ |
|---|
| 26 | * Revision 1.10 2005/05/08 04:32:43 reinelt |
|---|
| 27 | * CodingStyle added and applied |
|---|
| 28 | * |
|---|
| 29 | * Revision 1.9 2005/01/18 06:30:22 reinelt |
|---|
| 30 | * added (C) to all copyright statements |
|---|
| 31 | * |
|---|
| 32 | * Revision 1.8 2004/06/20 10:09:54 reinelt |
|---|
| 33 | * |
|---|
| 34 | * 'const'ified the whole source |
|---|
| 35 | * |
|---|
| 36 | * Revision 1.7 2004/04/12 04:55:59 reinelt |
|---|
| 37 | * emitted a BIG FAT WARNING if msr.h could not be found (and therefore |
|---|
| 38 | * the gettimeofday() delay loop would be used) |
|---|
| 39 | * |
|---|
| 40 | * Revision 1.6 2003/10/05 17:58:50 reinelt |
|---|
| 41 | * libtool junk; copyright messages cleaned up |
|---|
| 42 | * |
|---|
| 43 | * Revision 1.5 2003/08/24 05:17:58 reinelt |
|---|
| 44 | * liblcd4linux patch from Patrick Schemitz |
|---|
| 45 | * |
|---|
| 46 | * Revision 1.4 2001/09/12 05:37:22 reinelt |
|---|
| 47 | * |
|---|
| 48 | * fixed a bug in seti.c (file was never closed, lcd4linux run out of fd's |
|---|
| 49 | * |
|---|
| 50 | * improved socket debugging |
|---|
| 51 | * |
|---|
| 52 | * Revision 1.3 2001/03/14 13:19:29 ltoetsch |
|---|
| 53 | * Added pop3/imap4 mail support |
|---|
| 54 | * |
|---|
| 55 | * Revision 1.2 2000/08/10 09:44:09 reinelt |
|---|
| 56 | * |
|---|
| 57 | * new debugging scheme: error(), info(), debug() |
|---|
| 58 | * uses syslog if in daemon mode |
|---|
| 59 | * |
|---|
| 60 | * Revision 1.1 2000/04/15 11:13:54 reinelt |
|---|
| 61 | * |
|---|
| 62 | * added '-d' (debugging) switch |
|---|
| 63 | * added several debugging messages |
|---|
| 64 | * removed config entry 'Delay' for HD44780 driver |
|---|
| 65 | * delay loop for HD44780 will be calibrated automatically |
|---|
| 66 | * |
|---|
| 67 | */ |
|---|
| 68 | |
|---|
| 69 | #ifndef _DEBUG_H_ |
|---|
| 70 | #define _DEBUG_H_ |
|---|
| 71 | |
|---|
| 72 | extern int running_foreground; |
|---|
| 73 | extern int running_background; |
|---|
| 74 | extern int verbose_level; |
|---|
| 75 | |
|---|
| 76 | void message(const int level, const char *format, ...); |
|---|
| 77 | |
|---|
| 78 | #define debug(args...) message (2, __FILE__ ": " args) |
|---|
| 79 | #define info(args...) message (1, args) |
|---|
| 80 | #define error(args...) message (0, args) |
|---|
| 81 | |
|---|
| 82 | #endif |
|---|