mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 17:12:58 +00:00
fixed ldr/loader.c to report a missing export before bugchecking. ( was a CPRINT, which apparently doesn't work). Updated ntoskrnl.edf exports so that ros boots in bochs on my system again ( my ATAPI zip drive apparently was choking it )
svn path=/trunk/; revision=5178
This commit is contained in:
parent
2f0ad8d685
commit
06f059499a
2 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: loader.c,v 1.131 2003/06/01 14:59:02 chorns Exp $
|
/* $Id: loader.c,v 1.132 2003/07/20 05:15:34 royce Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -1556,7 +1556,7 @@ LdrPEGetExportAddress(PMODULE_OBJECT ModuleObject,
|
||||||
|
|
||||||
if (ExportAddress == NULL)
|
if (ExportAddress == NULL)
|
||||||
{
|
{
|
||||||
CPRINT("Export not found for %d:%s\n",
|
DbgPrint("Export not found for %d:%s\n",
|
||||||
Hint,
|
Hint,
|
||||||
Name != NULL ? Name : "(Ordinal)");
|
Name != NULL ? Name : "(Ordinal)");
|
||||||
KeBugCheck(0);
|
KeBugCheck(0);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
; $Id: ntoskrnl.edf,v 1.144 2003/07/12 10:24:45 chorns Exp $
|
; $Id: ntoskrnl.edf,v 1.145 2003/07/20 05:15:34 royce Exp $
|
||||||
;
|
;
|
||||||
; reactos/ntoskrnl/ntoskrnl.def
|
; reactos/ntoskrnl/ntoskrnl.def
|
||||||
;
|
;
|
||||||
|
@ -63,11 +63,11 @@ ExInterlockedExchangeUlong=ExInterlockedExchangeUlong@12
|
||||||
ExInterlockedExtendZone=ExInterlockedExtendZone@16
|
ExInterlockedExtendZone=ExInterlockedExtendZone@16
|
||||||
ExInterlockedIncrementLong=ExInterlockedIncrementLong@8
|
ExInterlockedIncrementLong=ExInterlockedIncrementLong@8
|
||||||
@ExInterlockedInsertHeadList=@ExInterlockedInsertHeadList@12
|
@ExInterlockedInsertHeadList=@ExInterlockedInsertHeadList@12
|
||||||
@ExInterlockedInsertTailList=@ExInterlockedInsertTailList@12
|
ExInterlockedInsertTailList=@ExInterlockedInsertTailList@12
|
||||||
@ExInterlockedPopEntryList=@ExInterlockedPopEntryList@8
|
@ExInterlockedPopEntryList=@ExInterlockedPopEntryList@8
|
||||||
@ExInterlockedPopEntrySList=@ExInterlockedPopEntrySList@8
|
ExInterlockedPopEntrySList=@ExInterlockedPopEntrySList@8
|
||||||
@ExInterlockedPushEntryList=@ExInterlockedPushEntryList@12
|
@ExInterlockedPushEntryList=@ExInterlockedPushEntryList@12
|
||||||
@ExInterlockedPushEntrySList=@ExInterlockedPushEntrySList@12
|
ExInterlockedPushEntrySList=@ExInterlockedPushEntrySList@12
|
||||||
@ExInterlockedRemoveHeadList=@ExInterlockedRemoveHeadList@8
|
@ExInterlockedRemoveHeadList=@ExInterlockedRemoveHeadList@8
|
||||||
ExIsProcessorFeaturePresent=ExIsProcessorFeaturePresent@4
|
ExIsProcessorFeaturePresent=ExIsProcessorFeaturePresent@4
|
||||||
ExIsResourceAcquiredExclusiveLite=ExIsResourceAcquiredExclusiveLite@4
|
ExIsResourceAcquiredExclusiveLite=ExIsResourceAcquiredExclusiveLite@4
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue