diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-03 08:58:30 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-03 08:58:30 +0000 |
commit | a062d3365465c27087cee8a1c8f1f76867529842 (patch) | |
tree | 484f7f86de211d76f6dfa8613a72c4d8527b3964 | |
parent | 1b89723caa5d7dbaaaa53d13c03944483d42cbb4 (diff) | |
download | ChibiOS-a062d3365465c27087cee8a1c8f1f76867529842.tar.gz ChibiOS-a062d3365465c27087cee8a1c8f1f76867529842.tar.bz2 ChibiOS-a062d3365465c27087cee8a1c8f1f76867529842.zip |
Added a struct name.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10752 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/common/oslib/include/chbsem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/common/oslib/include/chbsem.h b/os/common/oslib/include/chbsem.h index ed4a6f806..3a6956017 100644 --- a/os/common/oslib/include/chbsem.h +++ b/os/common/oslib/include/chbsem.h @@ -72,7 +72,7 @@ *
* @brief Binary semaphore type.
*/
-typedef struct {
+typedef struct ch_binary_semaphore {
semaphore_t sem;
} binary_semaphore_t;
|