Warning fixes (const char *, (void)).
[cacao.git] / src / toolbox / logging.h
1 /* toolbox/logging.h - contains logging functions
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Reinhard Grafl
28
29    $Id: logging.h 1848 2005-01-04 11:35:10Z twisti $
30
31 */
32
33
34 #ifndef _LOGGING_H
35 #define _LOGGING_H
36
37 #include <stdio.h>
38
39 #include "vm/global.h"
40
41
42 #define MAXLOGTEXT 500
43
44 /* function prototypes ********************************************************/
45
46 void log_init(const char *fname);
47 void log_text(const char *txt);
48
49 /* same as log_text without "LOG: " and newline */
50 void log_plain(const char *txt);
51
52 /* fflush logfile */
53 void log_flush(void);
54
55 /* newline and fflush */
56 void log_nl(void);
57
58 void log_cputime(void);
59
60 void log_message_class(const char *msg, classinfo *c);
61 void log_message_method(const char *msg, methodinfo *m);
62
63 void dolog(const char *txt, ...);
64
65 /* same as dolog without "LOG: " and newline*/
66 void dolog_plain(const char *txt, ...);
67
68 void error(const char *txt, ...);
69
70 /* XXX this is just a quick hack on darwin */
71 #if !defined(__DARWIN__)
72 void panic(const char *txt);
73 #endif
74
75 FILE *get_logfile(void);                        /* return the current logfile */
76
77 #endif /* _LOGGING_H */
78
79
80 /*
81  * These are local overrides for various environment variables in Emacs.
82  * Please do not remove this and leave it at the end of the file, where
83  * Emacs will automagically detect them.
84  * ---------------------------------------------------------------------
85  * Local variables:
86  * mode: c
87  * indent-tabs-mode: t
88  * c-basic-offset: 4
89  * tab-width: 4
90  * End:
91  */