1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/* Copyright (C) 2005 PrimeBase Technologies GmbH
*
* PrimeBase XT
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* 2005-02-07 Paul McCullagh
*
* H&G2JCtL
*/
#ifndef __xt_trace_h__
#define __xt_trace_h__
#include "xt_defs.h"
xtBool xt_init_trace(void);
void xt_exit_trace(void);
void xt_dump_trace(void);
void xt_print_trace(void);
void xt_trace(const char *fmt, ...);
void xt_ttraceq(struct XTThread *self, char *query);
void xt_ttracef(struct XTThread *self, char *fmt, ...);
xtWord8 xt_trace_clock(void);
char *xt_trace_clock_str(char *ptr);
char *xt_trace_clock_diff(char *ptr);
char *xt_trace_clock_diff(char *ptr, xtWord8 start_time);
void xt_set_fflush(xtBool on);
void xt_ftracef(char *fmt, ...);
#define XT_DEBUG_TRACE(x)
#define XT_DISABLED_TRACE(x)
#ifdef DEBUG
//#define PBXT_HANDLER_TRACE
#endif
/*
* -----------------------------------------------------------------------
* CONNECTION TRACKING
*/
#ifdef DEBUG
//#define XT_TRACK_CONNECTIONS
#endif
#ifdef XT_TRACK_CONNECTIONS
#define XT_TRACK_MAX_CONNS 500
typedef struct XTConnInfo {
xtThreadID cu_t_id;
xtXactID ci_curr_xact_id;
xtWord8 ci_xact_start;
xtXactID ci_prev_xact_id;
xtWord8 ci_prev_xact_time;
} XTConnInfoRec, *XTConnInfoPtr;
extern XTConnInfoRec xt_track_conn_info[XT_TRACK_MAX_CONNS];
void xt_dump_conn_tracking(void);
#endif
#endif
|