aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/sys.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-17 19:58:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-17 19:58:46 +0000
commit3d2f2081cebee2936d8073ab6a55177b6549013e (patch)
tree1e57283eece612d213add53d785ab5207b7d21af /src/include/sys.h
parent7fe2bf4789935d592c24dbbe2aaba18c34c021cf (diff)
downloadChibiOS-3d2f2081cebee2936d8073ab6a55177b6549013e.tar.gz
ChibiOS-3d2f2081cebee2936d8073ab6a55177b6549013e.tar.bz2
ChibiOS-3d2f2081cebee2936d8073ab6a55177b6549013e.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@778 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include/sys.h')
-rw-r--r--src/include/sys.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/include/sys.h b/src/include/sys.h
index ccc71ae7f..e36d98b76 100644
--- a/src/include/sys.h
+++ b/src/include/sys.h
@@ -43,13 +43,9 @@
/**
* @brief Performs a context switch.
- * @details This is the most critical code in any port, this function
- * is responsible for the context switch between 2 threads.
*
* @param otp the thread to be switched out
* @param ntp the thread to be switched in
- * @note The implementation of this code affects <b>directly</b> the context
- * switch performance so optimize here as much as you can.
*/
#define chSysSwitchI(otp, ntp) port_switch(otp, ntp)