Author: cfinck
Date: Mon Feb 22 23:00:00 2010
New Revision: 45662
URL: http://svn.reactos.org/svn/reactos?rev=45662&view=rev
Log:
Put Vizzini's "csq.h" in the Public Domain with permission from the author:
<sedwards> I talked to vizini
<sedwards> it's public domain
<sedwards> do what you will
<sedwards> slap your name on it
<sedwards> and submit it
<Colin_Finck> I can just do a commit to put it under PD now and everything will be alright?
<sedwards> yes, the author who wishes to remain anonymous is quite fine with that
Modified:
trunk/reactos/include/ddk/csq.h
Modified: trunk/reactos/include/ddk/csq.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/csq.h?rev=4566…
==============================================================================
--- trunk/reactos/include/ddk/csq.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/csq.h [iso-8859-1] Mon Feb 22 23:00:00 2010
@@ -1,7 +1,17 @@
/*
* Cancel-Safe Queue Library
- * Copyright (c) 2004, Vizzini (vizzini(a)plasmic.com)
- * Licensed under the GNU GPL for the ReactOS project
+ * Created in 2004 by Vizzini (vizzini(a)plasmic.com)
+ *
+ * THIS SOFTWARE IS NOT COPYRIGHTED
+ *
+ * This source code is offered for use in the public domain. You may
+ * use, modify or distribute it freely.
+ *
+ * This code is distributed in the hope that it will be useful but
+ * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
+ * DISCLAIMED. This includes but is not limited to warranties of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
*
* This header defines the interface to the ReactOS Cancel-Safe Queue library.
* This interface is based on and is similar to the Microsoft Cancel-Safe
Author: fireball
Date: Mon Feb 22 14:39:30 2010
New Revision: 45654
URL: http://svn.reactos.org/svn/reactos?rev=45654&view=rev
Log:
[NTOS]: Temporarily disable last part of MiInsertZeroListAtBack which seems to cause issues in the 1st stage.
Modified:
trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c
Modified: trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c [iso-8859-1] Mon Feb 22 14:39:30 2010
@@ -73,9 +73,9 @@
MiInsertZeroListAtBack(IN PFN_NUMBER EntryIndex)
{
PFN_NUMBER OldBlink;
- PMMPFN Pfn1, Blink;
- ULONG Color;
- PMMCOLOR_TABLES ColorHead;
+ PMMPFN Pfn1;//, Blink;
+ //ULONG Color;
+ //PMMCOLOR_TABLES ColorHead;
PMMPFNLIST ListHead;
/* Make sure the PFN lock is held */
@@ -92,7 +92,7 @@
/* Use the zero list */
ListHead = &MmZeroedPageListHead;
ListHead->Total++;
-
+
/* Get the back link */
OldBlink = ListHead->Blink;
if (OldBlink != LIST_HEAD)
@@ -115,7 +115,7 @@
/* Update the page location */
Pfn1->u3.e1.PageLocation = ZeroedPageList;
-
+#if 0
/* FIXME: NOT YET Due to caller semantics: Update the available page count */
//MmAvailablePages++;
@@ -158,6 +158,7 @@
/* And increase the count in the colored list */
ColorHead->Count++;
+#endif
}
VOID