diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-25 19:40:04 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-25 19:40:04 +0000 |
commit | 47f690922c3f137d25af4f166e27d1a1732665fe (patch) | |
tree | 014f1a2dfd12d2d9db1e3f838a5bba6fc342a69e /os | |
parent | 0f57c7c3b9c251bfbb734091c4591f59f7b970fb (diff) | |
download | ChibiOS-47f690922c3f137d25af4f166e27d1a1732665fe.tar.gz ChibiOS-47f690922c3f137d25af4f166e27d1a1732665fe.tar.bz2 ChibiOS-47f690922c3f137d25af4f166e27d1a1732665fe.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7808 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/various/cpp_wrappers/ch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/various/cpp_wrappers/ch.cpp b/os/various/cpp_wrappers/ch.cpp index 54cf74692..2e3d05937 100644 --- a/os/various/cpp_wrappers/ch.cpp +++ b/os/various/cpp_wrappers/ch.cpp @@ -538,7 +538,7 @@ namespace chibios_rt { void Mutex::unlockS(void) {
- chMtxLockS(&mutex);
+ chMtxUnlockS(&mutex);
}
#if CH_CFG_USE_CONDVARS
|