forked from iLya2IK/wchttpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwcdebug_vars.pas
46 lines (37 loc) · 1.37 KB
/
wcdebug_vars.pas
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
unit wcdebug_vars;
{$mode objfpc}{$H+}
interface
var
DEBUG_GLOBALS_LONGWORD : Array [0..13] of Cardinal = (0, 0, 0,
0, 0, 0,
0, 0, 0,
0, 0, 0,
0, 0);
DEBUG_GLOBALS_QWORD : Array [0..11] of QWORD = (0, 0, 0,
0, 0, 0,
0, 0, 0,
0, 0, 0);
const DG_MAX_LIVE_LINEAR_JOBS = 0;
const DG_MAX_LIVE_SORTED_JOBS = 1;
const DG_COUNT_LINEAR_JOBS = 2;
const DG_COUNT_SORTED_JOBS = 3;
const DG_WAIT_DELTA_TIME_MAX = 4;
const DG_WAIT_DELTA_TIME_AV = 5;
const DG_READ_DELTA_TIME_MAX = 6;
const DG_READ_DELTA_TIME_AV = 7;
const DG_WORK_DELTA_TIME_MAX = 8;
const DG_WORK_DELTA_TIME_AV = 9;
const DG_WRITE_DELTA_TIME_MAX = 10;
const DG_WRITE_DELTA_TIME_AV = 11;
const DG_FAILED_PREP_CNT = 12;
const DG_MAX_CONCURRENT_STREAMS = 13;
const DG_WAIT_DELTA_TIME_SUM = 0;
const DG_WAIT_DELTA_TIME_CNT = 1;
const DG_READ_DELTA_TIME_SUM = 2;
const DG_READ_DELTA_TIME_CNT = 3;
const DG_WORK_DELTA_TIME_SUM = 4;
const DG_WORK_DELTA_TIME_CNT = 5;
const DG_WRITE_DELTA_TIME_SUM = 6;
const DG_WRITE_DELTA_TIME_CNT = 7;
implementation
end.