From: asterix Date: Thu, 8 Feb 2007 14:25:56 +0000 (+0000) Subject: Typos. X-Git-Tag: 1.0.0~472 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=7d4c0569c5d71d8a2785b5e7fafd3c4d9ccb1bec;p=bertos.git Typos. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@769 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/algos/randpool.h b/algos/randpool.h index 62d650b9..02daafa2 100755 --- a/algos/randpool.h +++ b/algos/randpool.h @@ -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. *#* @@ -34,8 +37,10 @@ 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;