aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-04-08 12:39:05 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-04-08 12:39:05 +0000
commit1322201fbd4335b62c638df3727fa4246b67407a (patch)
tree079b89ea562d1aa03119d6a939215b966634674d /os/kernel
parent74b8a1756b6f05878569c9934b436fde36c0f86e (diff)
downloadChibiOS-1322201fbd4335b62c638df3727fa4246b67407a.tar.gz
ChibiOS-1322201fbd4335b62c638df3727fa4246b67407a.tar.bz2
ChibiOS-1322201fbd4335b62c638df3727fa4246b67407a.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1859 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel')
-rw-r--r--os/kernel/include/chschd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/kernel/include/chschd.h b/os/kernel/include/chschd.h
index 9d58fb887..3c55d59a0 100644
--- a/os/kernel/include/chschd.h
+++ b/os/kernel/include/chschd.h
@@ -172,7 +172,7 @@ extern "C" {
* equal or higher priority, if any.
*/
#if !defined(PORT_OPTIMIZED_DOYIELDS) || defined(__DOXYGEN__)
-#define chSchDoYieldS(void) { \
+#define chSchDoYieldS() { \
if (chSchCanYieldS()) \
chSchDoRescheduleI(); \
}