aboutsummaryrefslogtreecommitdiffstats
path: root/src/chinit.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-07-04 09:50:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-07-04 09:50:46 +0000
commite5bd63772994b9b9aa448c43870acf3580efaab7 (patch)
treec9915761bc280883b5dd1ff265ddbbac336aef7d /src/chinit.c
parent0b7254491c8d987d2d43b55b7699ba8ce7b42307 (diff)
downloadChibiOS-e5bd63772994b9b9aa448c43870acf3580efaab7.tar.gz
ChibiOS-e5bd63772994b9b9aa448c43870acf3580efaab7.tar.bz2
ChibiOS-e5bd63772994b9b9aa448c43870acf3580efaab7.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@332 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chinit.c')
-rw-r--r--src/chinit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chinit.c b/src/chinit.c
index ec7626e6a..5b2c0cd24 100644
--- a/src/chinit.c
+++ b/src/chinit.c
@@ -55,7 +55,8 @@ void chSysInit(void) {
* serve interrupts in its context while keeping the lowest energy saving
* mode compatible with the system status.
*/
- chThdCreate(IDLEPRIO, 0, waIdleThread, sizeof(waIdleThread), (tfunc_t)_IdleThread, NULL);
+ chThdCreateFast(IDLEPRIO, waIdleThread,
+ sizeof(waIdleThread), (tfunc_t)_IdleThread);
}
/**