CVS: winex/dlls/dbghelp symbol.c,1.4,1.5
[email protected] 30 Aug 2007 14:19:26 -0000
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/dlls/dbghelp symbol.c,1.4,1.5Update of /var/lib/cvsd/cvsroot/winex/dlls/dbghelp
In directory agravaine:/tmp/cvs-serv19613/dlls/dbghelp
Modified Files:
symbol.c
Log Message:
- fixed a couple traces in the symbol loader to make it more useful in the log
Index: symbol.c
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/dlls/dbghelp/symbol.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- symbol.c 30 Aug 2007 14:18:01 -0000 1.4
+++ symbol.c 30 Aug 2007 14:19:24 -0000 1.5
@@ -256,8 +256,8 @@
struct symt** p;
DWORD64 tsz;
- TRACE_(dbghelp_symt)("Adding global symbol %s:%s @%lx %p\n",
- debugstr_w(module->module.ModuleName), name, addr, type);
+ TRACE_(dbghelp_symt)("Adding global symbol %s:%s {addr = 0x%08lx - 0x%08lx (size = 0x%lx), type = %p}\n",
+ debugstr_w(module->module.ModuleName), name, addr, addr + size, size, type);
if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
{
sym->symt.tag = SymTagData;
@@ -809,6 +809,7 @@
j,
addr, addr + size, size,
addr2, addr2 + size2, size2);
+ FIXME("!!! these symbols may not be able to be found!\n");
}