changeset 31181:e735964b5d56

Fix a bunch of typos in the stream cache code. patch by Giorgio Vazzana, mywing81 gmail com
author diego
date Thu, 27 May 2010 22:18:10 +0000
parents 0d18ce469b67
children 4e7ef8336fc4
files stream/cache2.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/stream/cache2.c	Thu May 27 20:59:40 2010 +0000
+++ b/stream/cache2.c	Thu May 27 22:18:10 2010 +0000
@@ -19,11 +19,11 @@
 #include "config.h"
 
 // Initial draft of my new cache system...
-// Note it runs in 2 processes (using fork()), but doesn't requires locking!!
+// Note it runs in 2 processes (using fork()), but doesn't require locking!!
 // TODO: seeking, data consistency checking
 
 #define READ_USLEEP_TIME 10000
-// These defines are used to reduce the cost of many succesive
+// These defines are used to reduce the cost of many successive
 // seeks (e.g. when a file has no index) by spinning quickly at first.
 #define INITIAL_FILL_USLEEP_TIME 1000
 #define INITIAL_FILL_USLEEP_COUNT 10
@@ -68,12 +68,12 @@
 
 typedef struct {
   // constats:
-  unsigned char *buffer;      // base pointer of the alllocated buffer memory
-  int buffer_size; // size of the alllocated buffer memory
+  unsigned char *buffer;      // base pointer of the allocated buffer memory
+  int buffer_size; // size of the allocated buffer memory
   int sector_size; // size of a single sector (2048/2324)
   int back_size;   // we should keep back_size amount of old bytes for backward seek
   int fill_limit;  // we should fill buffer only if space>=fill_limit
-  int seek_limit;  // keep filling cache if distanse is less that seek limit
+  int seek_limit;  // keep filling cache if distance is less that seek limit
   // filler's pointers:
   int eof;
   off_t min_filepos; // buffer contain only a part of the file, from min-max pos
@@ -394,7 +394,7 @@
 
 
   //make sure that we won't wait from cache_fill
-  //more data than it is alowed to fill
+  //more data than it is allowed to fill
   if (s->seek_limit > s->buffer_size - s->fill_limit ){
      s->seek_limit = s->buffer_size - s->fill_limit;
   }