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/chthreads.c | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) (limited to 'src/chthreads.c') diff --git a/src/chthreads.c b/src/chthreads.c index 88dbefa4d..676df3d68 100644 --- a/src/chthreads.c +++ b/src/chthreads.c @@ -74,15 +74,13 @@ static void memfill(uint8_t *p, uint32_t n, uint8_t v) { * 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 * @param arg an argument passed to the thread function. It can be \p NULL. * @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 * returning from its main function. - * @note This function can be used to start a thead from within an interrupt - * handler by manually making it ready with \p chSchReadyI(). + * @note This function can be invoked from within an interrupt handler. */ Thread *chThdInit(void *workspace, size_t wsize, tprio_t prio, tfunc_t pf, void *arg) { @@ -106,8 +104,7 @@ Thread *chThdInit(void *workspace, size_t wsize, * @param prio the priority level for the new thread. Usually the threads are * created with priority \p NORMALPRIO, priorities * can range from \p LOWPRIO to \p HIGHPRIO. - * @param pf the thread function. Returning from this function automatically - * terminates the thread. + * @param pf the thread function * @param arg an argument passed to the thread function. It can be \p NULL. * @return the pointer to the \p Thread structure allocated for the * thread into the working space area. @@ -127,8 +124,7 @@ Thread *chThdCreateStatic(void *workspace, size_t wsize, * @param prio the priority level for the new thread. Usually the threads are * created with priority \p NORMALPRIO, priorities * can range from \p LOWPRIO to \p HIGHPRIO. - * @param pf the thread function. Returning from this function automatically - * terminates the thread. + * @param pf the thread function * @param arg an argument passed to the thread function. It can be \p NULL. * @return the pointer to the \p Thread structure allocated for the * thread into the working space area or \p NULL if the memory cannot @@ -160,8 +156,7 @@ Thread *chThdCreateFromHeap(size_t wsize, tprio_t prio, * @param prio the priority level for the new thread. Usually the threads are * created with priority \p NORMALPRIO, priorities * can range from \p LOWPRIO to \p HIGHPRIO. - * @param pf the thread function. Returning from this function automatically - * terminates the thread. + * @param pf the thread function * @param arg an argument passed to the thread function. It can be \p NULL. * @return the pointer to the \p Thread structure allocated for the * thread into the working space area or \p NULL if the memory cannot @@ -199,16 +194,10 @@ Thread *chThdCreateFromMemoryPool(MemoryPool *mp, tprio_t prio, * \p PRSUSPENDED state and a subsequent call to * \p chThdResume() will make it ready for * execution. - *
  • \p P_TERMINATED, this flag is usually set - * by the \p chThdTerminate() function and it is not - * normally used as parameter for this function. The - * result would be to create a thread with a termination - * request already pending.
  • * * @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 * @param arg an argument passed to the thread function. It can be \p NULL. * @return the pointer to the \p Thread structure allocated for the * thread into the working space area. -- cgit v1.2.3