[Scummvm-cvs-logs] SF.net SVN: scummvm:[52574] scummvm/branches/gsoc2010-plugins/backends/ plugins/elf

dhewg at users.sourceforge.net dhewg at users.sourceforge.net
Sun Sep 5 23:59:29 CEST 2010


Revision: 52574
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52574&view=rev
Author:   dhewg
Date:     2010-09-05 21:59:29 +0000 (Sun, 05 Sep 2010)

Log Message:
-----------
PLUGINS: Move doxygen to the base class header.

No point in documenting it on every derived class.

Modified Paths:
--------------
    scummvm/branches/gsoc2010-plugins/backends/plugins/elf/arm-loader.cpp
    scummvm/branches/gsoc2010-plugins/backends/plugins/elf/elf-loader.h
    scummvm/branches/gsoc2010-plugins/backends/plugins/elf/mips-loader.cpp

Modified: scummvm/branches/gsoc2010-plugins/backends/plugins/elf/arm-loader.cpp
===================================================================
--- scummvm/branches/gsoc2010-plugins/backends/plugins/elf/arm-loader.cpp	2010-09-05 21:59:07 UTC (rev 52573)
+++ scummvm/branches/gsoc2010-plugins/backends/plugins/elf/arm-loader.cpp	2010-09-05 21:59:29 UTC (rev 52574)
@@ -30,13 +30,6 @@
 
 #include "common/debug.h"
 
-/**
- * Follow the instruction of a relocation section.
- *
- * @param fileOffset	Offset into the File
- * @param size			Size of relocation section
- * @param relSegment	Base address of relocated segment in memory (memory offset)
- */
 bool ARMDLObject::relocate(Elf32_Off offset, Elf32_Word size, byte *relSegment) {
 	Elf32_Rel *rel = 0; //relocation entry
 

Modified: scummvm/branches/gsoc2010-plugins/backends/plugins/elf/elf-loader.h
===================================================================
--- scummvm/branches/gsoc2010-plugins/backends/plugins/elf/elf-loader.h	2010-09-05 21:59:07 UTC (rev 52573)
+++ scummvm/branches/gsoc2010-plugins/backends/plugins/elf/elf-loader.h	2010-09-05 21:59:29 UTC (rev 52574)
@@ -70,6 +70,14 @@
 	virtual void relocateSymbols(ptrdiff_t offset);
 
 	// architecture specific
+
+	/**
+	 * Follow the instruction of a relocation section.
+	 *
+	 * @param fileOffset	Offset into the File
+	 * @param size			Size of relocation section
+	 * @param relSegment	Base address of relocated segment in memory (memory offset)
+	 */
 	virtual bool relocate(Elf32_Off offset, Elf32_Word size, byte *relSegment) = 0;
 	virtual bool relocateRels(Elf32_Ehdr *ehdr, Elf32_Shdr *shdr) = 0;
 

Modified: scummvm/branches/gsoc2010-plugins/backends/plugins/elf/mips-loader.cpp
===================================================================
--- scummvm/branches/gsoc2010-plugins/backends/plugins/elf/mips-loader.cpp	2010-09-05 21:59:07 UTC (rev 52573)
+++ scummvm/branches/gsoc2010-plugins/backends/plugins/elf/mips-loader.cpp	2010-09-05 21:59:29 UTC (rev 52574)
@@ -31,13 +31,6 @@
 
 #define DEBUG_NUM 2
 
-/**
- * Follow the instruction of a relocation section.
- *
- * @param fileOffset	Offset into the File
- * @param size			Size of relocation section
- * @param relSegment	Base address of relocated segment in memory (memory offset)
- */
 bool MIPSDLObject::relocate(Elf32_Off offset, Elf32_Word size, byte *relSegment) {
 	Elf32_Rel *rel = 0;	// relocation entry
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list