diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-07-04 09:50:46 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-07-04 09:50:46 +0000 |
commit | e5bd63772994b9b9aa448c43870acf3580efaab7 (patch) | |
tree | c9915761bc280883b5dd1ff265ddbbac336aef7d /src/include/threads.h | |
parent | 0b7254491c8d987d2d43b55b7699ba8ce7b42307 (diff) | |
download | ChibiOS-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/threads.h')
-rw-r--r-- | src/include/threads.h | 2 |
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
|