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

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

Rewrote file io apis

File size: 3.1 KB
Line 
1/* $Id: dbglocal.cpp,v 1.8 2000-06-01 11:28:44 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"exceptstackdump",
121"hmfile"
122};
123//******************************************************************************
124//******************************************************************************
125void ParseLogStatus()
126{
127 char *envvar = getenv(DBG_ENVNAME);
128 char *envvar2= getenv(DBG_ENVNAME_LVL2);
129 char *dbgvar;
130 int i;
131
132 for(i=0;i<DBG_MAXFILES;i++) {
133 DbgEnabled[i] = 1;
134 }
135
136 if(envvar) {
137 dbgvar = strstr(envvar, "dll");
138 if(dbgvar) {
139 if(*(dbgvar-1) == '-') {
140 for(i=0;i<DBG_MAXFILES;i++) {
141 DbgEnabled[i] = 0;
142 }
143 }
144 }
145 for(i=0;i<DBG_MAXFILES;i++) {
146 dbgvar = strstr(envvar, DbgFileNames[i]);
147 if(dbgvar) {
148 if(*(dbgvar-1) == '-') {
149 DbgEnabled[i] = 0;
150 }
151 else
152 if(*(dbgvar-1) == '+') {
153 DbgEnabled[i] = 1;
154 }
155 }
156 }
157 }
158 if(envvar2) {
159 dbgvar = strstr(envvar2, "dll");
160 if(dbgvar) {
161 if(*(dbgvar-1) == '+') {
162 for(i=0;i<DBG_MAXFILES;i++) {
163 DbgEnabledLvl2[i] = 1;
164 }
165 }
166 }
167 for(i=0;i<DBG_MAXFILES;i++) {
168 dbgvar = strstr(envvar2, DbgFileNames[i]);
169 if(dbgvar) {
170 if(*(dbgvar-1) == '-') {
171 DbgEnabledLvl2[i] = 0;
172 }
173 else
174 if(*(dbgvar-1) == '+') {
175 DbgEnabledLvl2[i] = 1;
176 }
177 }
178 }
179 }
180}
181//******************************************************************************
182//******************************************************************************
183
184#endif
Note: See TracBrowser for help on using the repository browser.