Write pool_size function.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 8 Feb 2007 17:21:51 +0000 (17:21 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 8 Feb 2007 17:21:51 +0000 (17:21 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@771 38d2e660-2303-0410-9eaa-f027e97ec537

algos/randpool.c

index 92751dd7a49d947302199322a0b934f782bc74ca..e8c74229ae85c8af0117c66d75b308057d5ffd26 100755 (executable)
@@ -13,8 +13,8 @@
 
 /*#*
  *#* $Log$
- *#* Revision 1.4  2007/02/08 17:18:00  asterix
- *#* Write add_data and stir function. Typos
+ *#* Revision 1.5  2007/02/08 17:21:51  asterix
+ *#* Write pool_size function.
  *#*
  *#* Revision 1.3  2007/02/08 14:25:29  asterix
  *#* Write static funcion push_byte.
@@ -140,8 +140,12 @@ void add_data(EntrPool *pool, void *data, size_t n_bit)
        pool->last_counter = event;
 }
 
+/**
+ * Get the actual value of entropy.
+ */
 size_t pool_size(EntrPool *pool)
 {
+       return pool->entropy;
 }
 
 void get_bit(EntrPool *pool, void *data, size_t n_bit)