diff options
author | Richard Braun <rbraun@sceen.net> | 2017-03-04 17:58:53 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-03-04 17:58:53 +0100 |
commit | 3e2e232b5308b1365e66bf664d9562455d6cad1b (patch) | |
tree | 7f41a623d399a41932c6bf4085f87af3a0c1bdaf | |
parent | 0b2db2776b3a4fb208f13867934147f8cef79b60 (diff) |
Fix typos
-rw-r--r-- | kern/kmem.c | 2 | ||||
-rw-r--r-- | kern/kmem_i.h | 2 | ||||
-rw-r--r-- | kern/rtmutex.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/kern/kmem.c b/kern/kmem.c index e406115b..f978088b 100644 --- a/kern/kmem.c +++ b/kern/kmem.c @@ -84,7 +84,7 @@ #define KMEM_SLAB_SIZE_THRESHOLD (8 * PAGE_SIZE) /* - * Special buffer size under which slab data is unconditionnally allocated + * Special buffer size under which slab data is unconditionally allocated * from its associated slab. */ #define KMEM_BUF_SIZE_THRESHOLD (PAGE_SIZE / 8) diff --git a/kern/kmem_i.h b/kern/kmem_i.h index b9972d78..01277f49 100644 --- a/kern/kmem_i.h +++ b/kern/kmem_i.h @@ -124,7 +124,7 @@ struct kmem_buftag { /* * Free and uninitialized patterns. * - * These values are unconditionnally 64-bit wide since buffers are at least + * These values are unconditionally 64-bit wide since buffers are at least * 8-byte aligned. */ #ifdef __BIG_ENDIAN__ diff --git a/kern/rtmutex.h b/kern/rtmutex.h index f7cee716..b9c63ef6 100644 --- a/kern/rtmutex.h +++ b/kern/rtmutex.h @@ -18,7 +18,7 @@ * Real-time mutual exclusion locks. * * A real-time mutex is similar to a regular mutex, except priority - * inheritance is unconditionnally enabled. + * inheritance is unconditionally enabled. */ #ifndef _KERN_RTMUTEX_H |