Hi,
After running listdlls,
(lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '\SystemRoo t\system32\smss.exe' (Status c0000135) (lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '\SystemRoo t\system32\smss.exe' (Status c0000135) (lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '??\C:\Rea ctOS\system32\csrss.exe' (Status c0000135) (lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '??\C:\Rea ctOS\system32\csrss.exe' (Status c0000135) (lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '\SystemRoo t\system32\winlogon.exe' (Status c0000135) (lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '\SystemRoo t\system32\winlogon.exe' (Status c0000135) Unhandled exception ExceptionCode: c0000005 Faulting Address: 978333 Address: 7c9253d8 C:\ReactOS\system32\ntdll.dll CS:EIP 1b:7c9253d8 DS 23 ES 23 FS 3b GS 0 EAX: 00978333 EBX: 00866b00 ECX: 00000004 EDX: 00007473 EBP: 0052d904 ESI: 77a49064 ESP: 0052d8fc EDI: 00978333 EFLAGS: 00010202 Frames: 77a40000+17db C:\ReactOS\system32\VERSION.dll 77a40000+181d C:\ReactOS\system32\VERSION.dll 400000+115d D:\rosbackup\tools\listdlls.EXE
I tried "listdlls > dumpdata", and it did not work. Only touch the file w/o any data, just 0 bytes in file size. It quits at winlogon.exe at pid 156.
svn info Path: . URL: svn://svn.reactos.com/trunk/reactos Repository UUID: Revision: 19072 Node Kind: directory Schedule: normal Last Changed Author: ion Last Changed Rev: 19072 Last Changed Date: 2005-11-08 22:54:39 +0000 (Tue, 08 Nov 2005) Properties Last Updated: 2005-10-01 16:19:41 +0000 (Sat, 01 Oct 2005)
Thanks, James
James Tabor wrote:
After running listdlls,
[...]
no, it's not broken, it's a bug in listdlls. See the paths?
(lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '\SystemRoot\system32\smss.exe' (Status c0000135) (lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '??\C:\ReactOS\system32\csrss.exe' (Status c0000135) (lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '\SystemRoot\system32\winlogon.exe' (Status c0000135)
the earliest-running system processes aren't created by CreateProcess, but by RtlCreateUserProcess, so their executables are specified with NT paths. listdlls has to either ignore these errors or handle NT paths
KJKHyperion wrote:
James Tabor wrote:
After running listdlls,
[...]
no, it's not broken, it's a bug in listdlls. See the paths?
(lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '\SystemRoot\system32\smss.exe' (Status c0000135) (lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '??\C:\ReactOS\system32\csrss.exe' (Status c0000135) (lib/ntdll/ldr/utils.c:2015) Failed to create or open dll section of '\SystemRoot\system32\winlogon.exe' (Status c0000135)
the earliest-running system processes aren't created by CreateProcess, but by RtlCreateUserProcess, so their executables are specified with NT paths. listdlls has to either ignore these errors or handle NT paths
Hi! Thank you for pointing that out. If it was a snake, 8^o. James