Bastian Triller 3 rokov pred
rodič
commit
5497d15766
2 zmenil súbory, kde vykonal 3 pridanie a 3 odobranie
  1. 1 1
      doc/misc/NEWS
  2. 2 2
      doc/tutorials/locking.txt

+ 1 - 1
doc/misc/NEWS

@@ -338,7 +338,7 @@ modules:
                           the retransmissions which would otherwise be 
                           challenged). The major advantage is greatly 
                           enhanced security (extremely small probability of
-                          a succesfull replay attack) combine with support
+                          a successful replay attack) combine with support
                           for cached credentials (if the UAs do support qop 
                           and auth)
                        - nc_array_size - size of the array used for storing

+ 2 - 2
doc/tutorials/locking.txt

@@ -109,7 +109,7 @@ Locking & unlocking:
 void    lock_get(gen_lock_t* lock);      - lock (mutex down)
 void    lock_release(gen_lock_t* lock);  - unlock (mutex up)
 int     lock_try(gen_lock_t* lock);      - tries to lock and returns 0 
-                                           if succesfull, -1 if not (this is
+                                           if successful, -1 if not (this is
                                            a non-blocking lock_get())
 
 
@@ -164,7 +164,7 @@ Locking & unlocking:
 void lock_set_get(lock_set_t* s, int i);
 void lock_set_release(lock_set_t* s, int i);
 int  lock_set_try(lock_set_t* s, int i);      - tries to lock the i-th lock
-                                                from the set. If succesfull
+                                                from the set. If successful
                                                 returns 0, if not -1.
 
 Example: