Author: ion
Date: Fri Jun 30 22:16:27 2006
New Revision: 22723
URL: http://svn.reactos.org/svn/reactos?rev=22723&view=rev
Log:
[AUDIT] - iocomp.c, event.c, iowork.c, mdl.c, timer.c, symlink.c are all simple wrappers around either executive, kernel or object manager code, and they are trivial implementations usually less then 10 lines and heavily documented in public sources.
Modified:
trunk/reactos/ntoskrnl/io/iocomp.c (props changed)
Propchange: trunk/reactos/ntoskrnl/io/iocomp.c
------------------------------------------------------------------------------
--- svn:needs-lock (original)
+++ svn:needs-lock (removed)
@@ -1,1 +1,0 @@
-*
Author: greatlrd
Date: Fri Jun 30 19:53:57 2006
New Revision: 22716
URL: http://svn.reactos.org/svn/reactos?rev=22716&view=rev
Log:
sorry I did broke the comping some typo
Modified:
trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
Modified: trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/backend/mingw…
==============================================================================
--- trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp (original)
+++ trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp Fri Jun 30 19:53:57 2006
@@ -1,4 +1,4 @@
- o/*
+/*
* Copyright (C) 2005 Casper S. Hornstrup
*
* This program is free software; you can redistribute it and/or modify
Author: greatlrd
Date: Fri Jun 30 19:38:30 2006
New Revision: 22715
URL: http://svn.reactos.org/svn/reactos?rev=22715&view=rev
Log:
fixing strip working right strip -sx does not working u must type strip -s -x not togther as -sx, I did add -X direcly after it will strip away local informations as well
Modified:
trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
Modified: trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/backend/mingw…
==============================================================================
--- trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp (original)
+++ trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp Fri Jun 30 19:38:30 2006
@@ -1,4 +1,4 @@
-/*
+ o/*
* Copyright (C) 2005 Casper S. Hornstrup
*
* This program is free software; you can redistribute it and/or modify
@@ -1517,7 +1517,7 @@
fprintf ( fMakefile,
"\t$(ECHO_STRIP)\n" );
fprintf ( fMakefile,
- "\t${strip} -sx $@\n\n" );
+ "\t${strip} -s -x -X $@\n\n" );
fprintf ( fMakefile,
"endif\n" );
}