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

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

added exception stack dump code; GetLocaleInfoA fixes

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