diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-09-24 14:44:42 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-09-24 14:44:42 +0000 |
commit | 3d4a6e15ed6b9dc80403288b36d22839de6e2320 (patch) | |
tree | f0a74727fb0bf46df069288c724a10f50748b29c /src/include/threads.h | |
parent | c9205e2fd961c60cffd1000936340806a8e45558 (diff) | |
download | ChibiOS-3d4a6e15ed6b9dc80403288b36d22839de6e2320.tar.gz ChibiOS-3d4a6e15ed6b9dc80403288b36d22839de6e2320.tar.bz2 ChibiOS-3d4a6e15ed6b9dc80403288b36d22839de6e2320.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@443 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include/threads.h')
-rw-r--r-- | src/include/threads.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/threads.h b/src/include/threads.h index b2c7bfb1b..5248c807e 100644 --- a/src/include/threads.h +++ b/src/include/threads.h @@ -187,8 +187,6 @@ 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); Thread *chThdResume(Thread *tp); @@ -254,8 +252,7 @@ extern "C" { * can range from \p LOWPRIO to \p HIGHPRIO. * @param workspace pointer to a working area dedicated to the thread stack * @param wsize size of the working area. - * @param pf the thread function. Returning from this function automatically - * terminates the thread. + * @param pf the thread function * @return the pointer to the \p Thread structure allocated for the * thread into the working space area. * @note A thread can terminate by calling \p chThdExit() or by simply |