From 3d4a6e15ed6b9dc80403288b36d22839de6e2320 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 24 Sep 2008 14:44:42 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@443 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/include/threads.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/include') 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 -- cgit v1.2.3