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