Typos.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 8 Feb 2007 14:25:56 +0000 (14:25 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 8 Feb 2007 14:25:56 +0000 (14:25 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@769 38d2e660-2303-0410-9eaa-f027e97ec537

algos/randpool.h

index 62d650b9abe4f8bae848b8fd3cc8b1eb36eaf412..02daafa243aedbe762c9d7ebc725b310268cf72b 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.3  2007/02/08 14:25:56  asterix
+ *#* Typos.
+ *#*
  *#* Revision 1.2  2007/02/08 11:53:03  asterix
  *#* Add EntrPool struct. Typos.
  *#*
 typedef struct EntrPool 
 {
        size_t entropy;                                  ///< Actual value of entropy.
-       size_t pool_pos;                                 ///< Actual size of entropy pool.
+       size_t pool_pos_add;                             ///< Size of byte insert in entropy pool.
+       size_t pool_pos_get;                             ///< Size of byte take in entropy pool.
        size_t counter;                                  ///< Counter.
+       size_t last_counter;                             ///< Last timer value.
        uint8_t pool_entropy[CONFIG_SIZE_ENTROPY_POOL];  ///< Entropy pool.
 
 } EntrPool;