aboutsummaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-05-28 15:19:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-05-28 15:19:46 +0000
commit9c26afc8fde6d30d2149a844cb53e45507a7b5f7 (patch)
treeee87aa60e8de07b6834780ed53507122e70558f7 /src/include
parent9873f0d9548d49d471b3fcb272b081f2c3b6cd64 (diff)
downloadChibiOS-9c26afc8fde6d30d2149a844cb53e45507a7b5f7.tar.gz
ChibiOS-9c26afc8fde6d30d2149a844cb53e45507a7b5f7.tar.bz2
ChibiOS-9c26afc8fde6d30d2149a844cb53e45507a7b5f7.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@313 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include')
-rw-r--r--src/include/threads.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/threads.h b/src/include/threads.h
index d9bb467b9..297c56a68 100644
--- a/src/include/threads.h
+++ b/src/include/threads.h
@@ -157,7 +157,7 @@ struct Thread {
#define ABSPRIO 255
/* Not an API, don't use into the application code.*/
-void _InitThread(tprio_t prio, tmode_t mode, Thread *tp);
+void init_thread(tprio_t prio, tmode_t mode, Thread *tp);
/** Thread function.*/
typedef msg_t (*tfunc_t)(void *);