aboutsummaryrefslogtreecommitdiffstats
path: root/src/include
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/include
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/include')
-rw-r--r--src/include/threads.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/threads.h b/src/include/threads.h
index 297c56a68..5bfd51423 100644
--- a/src/include/threads.h
+++ b/src/include/threads.h
@@ -170,6 +170,8 @@ extern "C" {
#endif
Thread *chThdCreate(tprio_t prio, tmode_t mode, void *workspace,
size_t wsize, tfunc_t pf, void *arg);
+ Thread *chThdCreateFast(tprio_t prio, void *workspace,
+ size_t wsize, tfunc_t pf);
void chThdSetPriority(tprio_t newprio);
void chThdExit(msg_t msg);
#ifdef CH_USE_RESUME