diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-01 12:44:30 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-01 12:44:30 +0000 |
commit | e000178f9641f95fe677fb7a8e25427b871151c1 (patch) | |
tree | ba362501f50f8cd3e7ce690b5dab004b2a9b001b /os/common | |
parent | 76663a4a7916fd260779c5fecbb493009b59bb5a (diff) | |
download | ChibiOS-e000178f9641f95fe677fb7a8e25427b871151c1.tar.gz ChibiOS-e000178f9641f95fe677fb7a8e25427b871151c1.tar.bz2 ChibiOS-e000178f9641f95fe677fb7a8e25427b871151c1.zip |
Typo.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10729 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common')
-rw-r--r-- | os/common/oslib/include/chmempools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/common/oslib/include/chmempools.h b/os/common/oslib/include/chmempools.h index f6db5d808..e9a7af31b 100644 --- a/os/common/oslib/include/chmempools.h +++ b/os/common/oslib/include/chmempools.h @@ -74,7 +74,7 @@ typedef struct { * @brief Guarded memory pool descriptor.
*/
typedef struct {
- semaphore_t sem; /**< @brief Counter semaphore quarding
+ semaphore_t sem; /**< @brief Counter semaphore guarding
the memory pool. */
memory_pool_t pool; /**< @brief The memory pool itself. */
} guarded_memory_pool_t;
|