summaryrefslogtreecommitdiff
path: root/dxr3memcpy.h
diff options
context:
space:
mode:
authoraustriancoder <austriancoder>2004-09-13 16:36:21 +0000
committeraustriancoder <austriancoder>2004-09-13 16:36:21 +0000
commit9b76d10dbd777c14ce983696b290e9d323912b3f (patch)
tree37365405e0007d4f9c02010a4d15c0bb823fdcf4 /dxr3memcpy.h
parentec03e01713f6a6cc4ce4901b0164839de7d69a55 (diff)
downloadvdr-plugin-dxr3-9b76d10dbd777c14ce983696b290e9d323912b3f.tar.gz
vdr-plugin-dxr3-9b76d10dbd777c14ce983696b290e9d323912b3f.tar.bz2
updated source comments
Diffstat (limited to 'dxr3memcpy.h')
-rw-r--r--dxr3memcpy.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/dxr3memcpy.h b/dxr3memcpy.h
index a78139b..54bd8b8 100644
--- a/dxr3memcpy.h
+++ b/dxr3memcpy.h
@@ -62,10 +62,10 @@
// ==================================
struct memcpy_routine
{
- string name;
- void *(* function)(void *to, const void *from, size_t len);
- unsigned long long time;
- uint32_t cpu_require; // caps from dxr3cpu.h
+ string name; ///< name of memcpy methode
+ void *(* function)(void *to, const void *from, size_t len); ///< our memcopy methode
+ unsigned long long time; ///< needed time for banchmark
+ uint32_t cpu_require; ///< caps from dxr3cpu.h
};
// ==================================
@@ -82,7 +82,7 @@ public:
private:
unsigned long long int Rdtsc();
- vector<memcpy_routine> m_methods;
+ vector<memcpy_routine> m_methods; ///< a std::vector with all methodes
};
// ==================================