Author: janderwald
Date: Thu Jan 4 18:57:47 2007
New Revision: 25293
URL: http://svn.reactos.org/svn/reactos?rev=25293&view=rev
Log:
- order all tools in alphabetically order
- add rgenstat to tools.mak
Modified:
trunk/reactos/tools/tools.mak
Modified: trunk/reactos/tools/tools.mak
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/tools.mak?rev=25293&…
==============================================================================
--- trunk/reactos/tools/tools.mak (original)
+++ trunk/reactos/tools/tools.mak Thu Jan 4 18:57:47 2007
@@ -41,22 +41,23 @@
${host_gcc} $(TOOLS_CPPFLAGS) -c $< -o $@
include tools/bin2c.mak
-include tools/rsym.mak
-include tools/raddr2line.mak
-include tools/pefixup.mak
include tools/bin2res/bin2res.mak
include tools/buildno/buildno.mak
include tools/cabman/cabman.mak
include tools/cdmake/cdmake.mak
+include tools/dbgprint/dbgprint.mak
include tools/gendib/gendib.mak
include tools/mkhive/mkhive.mak
include tools/nci/nci.mak
+include tools/pefixup.mak
+include tools/raddr2line.mak
include tools/rbuild/rbuild.mak
+include tools/rgenstat/rgenstat.mak
+include tools/rsym.mak
+include tools/sysreg/sysreg.mak
include tools/unicode/unicode.mak
include tools/widl/widl.mak
include tools/winebuild/winebuild.mak
include tools/wmc/wmc.mak
include tools/wpp/wpp.mak
-include tools/wrc/wrc.mak
-include tools/sysreg/sysreg.mak
-include tools/dbgprint/dbgprint.mak
+include tools/wrc/wrc.mak
Author: greatlrd
Date: Thu Jan 4 17:46:20 2007
New Revision: 25292
URL: http://svn.reactos.org/svn/reactos?rev=25292&view=rev
Log:
do not build hello as GUI apps it is CUI apps. printf is redirect in GUI apps and does not output to console. Now we change to CUI, printf are redirect to console when it build as CUI.
Modified:
trunk/rosapps/tests/hello/hello.rbuild
Modified: trunk/rosapps/tests/hello/hello.rbuild
URL: http://svn.reactos.org/svn/reactos/trunk/rosapps/tests/hello/hello.rbuild?r…
==============================================================================
--- trunk/rosapps/tests/hello/hello.rbuild (original)
+++ trunk/rosapps/tests/hello/hello.rbuild Thu Jan 4 17:46:20 2007
@@ -1,4 +1,4 @@
-<module name="hello" type="win32gui" installbase="bin" installname="hello.exe">
+<module name="hello" type="win32cui" installbase="bin" installname="hello.exe">
<define name="_WIN32_IE">0x0501</define>
<define name="_WIN32_WINNT">0x0501</define>
<define name="__USE_W32API" />
Author: ion
Date: Thu Jan 4 04:55:27 2007
New Revision: 25289
URL: http://svn.reactos.org/svn/reactos?rev=25289&view=rev
Log:
- Fix a bug in KeLeaveCriticalRegion which was delivering APCs even if Special APCs were disabled. The check is now fixed. Thanks to Dominique Cote for the bug report.
Modified:
trunk/reactos/ntoskrnl/include/internal/ke_x.h
Modified: trunk/reactos/ntoskrnl/include/internal/ke_x.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/include/internal/…
==============================================================================
--- trunk/reactos/ntoskrnl/include/internal/ke_x.h (original)
+++ trunk/reactos/ntoskrnl/include/internal/ke_x.h Thu Jan 4 04:55:27 2007
@@ -167,7 +167,7 @@
{ \
/* Check if we need to request an APC Delivery */ \
if (!(IsListEmpty(&_Thread->ApcState.ApcListHead[KernelMode])) && \
- !(_Thread->KernelApcDisable)) \
+ !(_Thread->SpecialApcDisable)) \
{ \
/* Check for the right environment */ \
KiCheckForKernelApcDelivery(); \