diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-23 09:11:43 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-23 09:11:43 +0000 |
commit | 45e44e73288edeee8572f235419c9842c7e5dcc5 (patch) | |
tree | 5e8a3b7801fc09eb8dfaf2154330ed1858e3bb8c /os/rt/include | |
parent | 7b08ab4ae5e671d6b3f2bee8dfb01bd70199c8bf (diff) | |
download | ChibiOS-45e44e73288edeee8572f235419c9842c7e5dcc5.tar.gz ChibiOS-45e44e73288edeee8572f235419c9842c7e5dcc5.tar.bz2 ChibiOS-45e44e73288edeee8572f235419c9842c7e5dcc5.zip |
Added chMtxUnlockAllS().
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8927 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include')
-rw-r--r-- | os/rt/include/chmtx.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/rt/include/chmtx.h b/os/rt/include/chmtx.h index f1cc65a2f..f4a0bc0bc 100644 --- a/os/rt/include/chmtx.h +++ b/os/rt/include/chmtx.h @@ -108,6 +108,7 @@ extern "C" { void chMtxUnlock(mutex_t *mp);
void chMtxUnlockS(mutex_t *mp);
void chMtxUnlockAll(void);
+ void chMtxUnlockAllS(void);
#ifdef __cplusplus
}
#endif
|