Author: peterw Date: Sun Aug 5 06:05:40 2007 New Revision: 28168
URL: http://svn.reactos.org/svn/reactos?rev=28168&view=rev Log: - A couple of minor changes.
Modified: trunk/tools/RosBE-Windows/Documentation/files/howto.html trunk/tools/RosBE-Windows/Tools/buildtime.c trunk/tools/RosBE-Windows/Tools/cpucount.c
Modified: trunk/tools/RosBE-Windows/Documentation/files/howto.html URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Documentation/f... ============================================================================== --- trunk/tools/RosBE-Windows/Documentation/files/howto.html (original) +++ trunk/tools/RosBE-Windows/Documentation/files/howto.html Sun Aug 5 06:05:40 2007 @@ -10,53 +10,54 @@ <li title="question">Q: How do I build ReactOS Source?</li> <li title="Answer"> A: Start RosBE and type "make bootcd" or "make livecd" to generate - ReactOS ISO Files from the Source. + ReactOS ISO files from the source. </li> <li> </li>
<li title="question"> - Q: I have a Multi Core CPU. Can I speed up the build process anyhow? + Q: I have a Multi CPU/Core system. Can I speed up the build process somehow? </li> <li title="Answer"> - A: Yes, you can. Just use makex instead of make Command. makex checks - for the Number of Cores and optimizes the Processes to that number. + A: Yes, you can. Just use "makex" instead of the "make" Command. "makex" + checks for the number of processors/cores in your system and optimizes + the build according to that number. </li> <li> </li>
- <li title="question">Q: How/Where can I get the Source Code?</li> + <li title="question">Q: How/Where can I get the ReactOS source code?</li> <li title="Answer"> - A: You could load it via any SVN Client from: + A: You can retrieve it with any SVN client from: <a href="svn://svn.reactos.org/reactos/trunk/reactos"> svn://svn.reactos.org/reactos/trunk/reactos</a>
- RosBE itself has SVN Command Line Client and a lite Variant for newbies called - "ssvn" (SimpleSVN) included. If you want to get the Source Tree, type - "ssvn create" and it copies all Code to the Default Source Folder you - did set while the Setup. + RosBE itself has a SVN command line client and a lite variant for + new users called "ssvn" (SimpleSVN) included. If you want to get the + source tree, type "ssvn create" and it copies all code to the default + source folder you set during installation. </li> <li> </li>
- <li title="question">Q: How can I update the Source Code?</li> + <li title="question">Q: How can I update the ReactOS source code?</li> <li title="Answer">A: Just type "ssvn update".</li> <li> </li>
<li title="Question"> - Q: Can I see somewhere if my Source Tree is up to date? + Q: Can I see somewhere if my source tree is up to date? </li> <li title="Answer">A: Yes, just type "ssvn status".</li> <li> </li>
<li title="Question"> - Q: My Source Tree seems corrupted / Updating was aborted etc. etc. and now - I cannot update it anymore... What to do? + Q: My source tree seems corrupted / updating was aborted etc... and now + I cannot update it anymore... What can I do? </li> <li title="Answer"> - A: You need to cleanup it. Type "ssvn cleanup" and wait. After that type + A: You need to clean it up. Type "ssvn cleanup" and wait. After that type "ssvn update" and it runs again. </li> <li> </li>
Modified: trunk/tools/RosBE-Windows/Tools/buildtime.c URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/buildtime... ============================================================================== --- trunk/tools/RosBE-Windows/Tools/buildtime.c (original) +++ trunk/tools/RosBE-Windows/Tools/buildtime.c Sun Aug 5 06:05:40 2007 @@ -4,6 +4,7 @@ * FILE: Tools/buildtime.c * PURPOSE: Buildtime Counter * COPYRIGHT: Copyright 2007 KJK::Hyperion + * Copyright 2007 Peter Ward dralnix@gmail.com * */
@@ -57,7 +58,7 @@ time_t StartTime, FinishTime; double TotalTime; int Hour, Minute, Second; - int ret; + int Status;
// // Get the command line to pass on. @@ -94,7 +95,7 @@ // // Run the program (Status is 1 on failure). // - ret = system(CommandLineBuffer); + Status = system(CommandLineBuffer);
// // Grab the finishing timestamp. @@ -124,5 +125,5 @@ // free(CommandLineBuffer);
- return ret; + return Status; }
Modified: trunk/tools/RosBE-Windows/Tools/cpucount.c URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/cpucount.... ============================================================================== --- trunk/tools/RosBE-Windows/Tools/cpucount.c (original) +++ trunk/tools/RosBE-Windows/Tools/cpucount.c Sun Aug 5 06:05:40 2007 @@ -4,6 +4,7 @@ * FILE: Tools/cpucount.c * PURPOSE: CPU Core Counter * COPYRIGHT: Copyright 2007 Christoph von Wittich Christoph_vW@reactos.org + * Copyright 2007 Peter Ward dralnix@gmail.com * */