source: trunk/src/kernel32/dbglocal.cpp@ 3461

Last change on this file since 3461 was 3461, checked in by sandervl, 25 years ago

init changes, export for installation program, create additional directories & registry keys, added lvl2 debug log feature, override for windows dir re-added

File size: 3.1 KB
Line 
1/* $Id: dbglocal.cpp,v 1.6 2000-04-29 18:26:57 sandervl Exp $ */
2
3/*
4 * debug logging functions for OS/2
5 *
6 *
7 * Copyright 2000 Sander van Leeuwen
8 * Project Odin Software License can be found in LICENSE.TXT
9 */
10#include <os2wrap.h>
11#include <stdlib.h>
12#include <stdio.h>
13#include <string.h>
14#include "dbglocal.h"
15
16#ifdef DEBUG
17
18USHORT DbgEnabled[DBG_MAXFILES] = {0};
19USHORT DbgEnabledLvl2[DBG_MAXFILES] = {0};
20
21char *DbgFileNames[DBG_MAXFILES] =
22{
23"kernel32",
24"kobjects",
25"console",
26"conin",
27"conbuffer",
28"conout",
29"unicode",
30"network",
31"hmdevio",
32"profile",
33"thread",
34"virtual",
35"thunk",
36"obsolete",
37"comm",
38"message",
39"resource",
40"exceptions",
41"heapshared",
42"cpuhlp",
43"heapcode",
44"lfile",
45"npipe",
46"oslibdos",
47"oslibmisc",
48"misc",
49"exceptutil",
50"lang",
51"iccio",
52"map",
53"win32util",
54"heap",
55"heapstring",
56"os2heap",
57"vmutex",
58"initterm",
59"handlemanager",
60"environ",
61"initsystem",
62"hmdevice",
63"hmopen32",
64"hmobjects",
65"hmevent",
66"hmmutex",
67"hmcomm",
68"semaphore",
69"wprocess",
70"conprop",
71"conprop2",
72"winimagelx",
73"winimagebase",
74"windllbase",
75"winexebase",
76"time",
77"mmap",
78"winimagepe2lx",
79"winimagepeldr",
80"windllpe2lx",
81"windlllx",
82"windllpeldr",
83"winexepe2lx",
84"winexelx",
85"winexepeldr",
86"winres",
87"critsection",
88"pefile",
89"winimgres",
90"wintls",
91"async",
92"fileio",
93"hmtoken",
94"kernelrsrc",
95"atom",
96"disk",
97"directory",
98"cvtbitmap",
99"hmmmap",
100"winfakepeldr",
101"cvtaccel",
102"cvticon",
103"cvticongrp",
104"oslibexcept",
105"cpu",
106"process",
107"cvtcursor",
108"cvtcursorgrp",
109"stubs",
110"interlock",
111"toolhelp",
112"codepage",
113"debug",
114"oslibdebug",
115"registry",
116"queue",
117"hmthread",
118"hmprocess",
119"vsemaphore"
120};
121//******************************************************************************
122//******************************************************************************
123void ParseLogStatus()
124{
125 char *envvar = getenv(DBG_ENVNAME);
126 char *envvar2= getenv(DBG_ENVNAME_LVL2);
127 char *dbgvar;
128 int i;
129
130 for(i=0;i<DBG_MAXFILES;i++) {
131 DbgEnabled[i] = 1;
132 }
133
134 if(envvar) {
135 dbgvar = strstr(envvar, "dll");
136 if(dbgvar) {
137 if(*(dbgvar-1) == '-') {
138 for(i=0;i<DBG_MAXFILES;i++) {
139 DbgEnabled[i] = 0;
140 }
141 }
142 }
143 for(i=0;i<DBG_MAXFILES;i++) {
144 dbgvar = strstr(envvar, DbgFileNames[i]);
145 if(dbgvar) {
146 if(*(dbgvar-1) == '-') {
147 DbgEnabled[i] = 0;
148 }
149 else
150 if(*(dbgvar-1) == '+') {
151 DbgEnabled[i] = 1;
152 }
153 }
154 }
155 }
156 if(envvar2) {
157 dbgvar = strstr(envvar2, "dll");
158 if(dbgvar) {
159 if(*(dbgvar-1) == '+') {
160 for(i=0;i<DBG_MAXFILES;i++) {
161 DbgEnabledLvl2[i] = 1;
162 }
163 }
164 }
165 for(i=0;i<DBG_MAXFILES;i++) {
166 dbgvar = strstr(envvar2, DbgFileNames[i]);
167 if(dbgvar) {
168 if(*(dbgvar-1) == '-') {
169 DbgEnabledLvl2[i] = 0;
170 }
171 else
172 if(*(dbgvar-1) == '+') {
173 DbgEnabledLvl2[i] = 1;
174 }
175 }
176 }
177 }
178}
179//******************************************************************************
180//******************************************************************************
181
182#endif
Note: See TracBrowser for help on using the repository browser.