Skip to content
Snippets Groups Projects
Commit e8eab490 authored by Sergi Foix Salmerón's avatar Sergi Foix Salmerón
Browse files

[iriutils]

 - Correcting some typos
parent e53f5b64
No related branches found
No related tags found
No related merge requests found
......@@ -291,7 +291,7 @@ class CThread
*
* This function sends a request to the thread in order to terminate it.
* If the thread is not active, this function has no effect. Otherwise,
* this function won0t return until the thread has finished.
* this function won't return until the thread has finished.
*
* This function only ends the execution of the thread, but it does not
* delete nor change the user thread function. After calling this function,
......
......@@ -180,7 +180,7 @@ class CThreadServer
* exception class.
*
* \param thread_id a null terminated string with the thread identifier. The
* identifier is stored internally in a different memeory location so that
* identifier is stored internally in a different memory location so that
* the parameter can be freed after calling this function. The identifier
* must not have any spaces or special characters, and must be unique.
*
......@@ -204,7 +204,7 @@ class CThreadServer
* exception class.
*
* \param thread_id a null terminated string with the thread identifier. The
* identifier is stored internally in a different memeory location so that
* identifier is stored internally in a different memory location so that
* the parameter can be freed after calling this function. The identifier
* must not have any spaces or special characters, and must be unique.
*/
......@@ -215,8 +215,8 @@ class CThreadServer
*
* This function provides access to the private CThread objects through the
* public interface of the class. To see a more detailed description of its
* features, see the documentation on the attach() function of the CThread
* class.
* features, see the documentation on the CThread::attach() function of the
* CThread class.
*
* The other parameters to the function are descrived in the CThread class
* reference.
......@@ -243,15 +243,15 @@ class CThreadServer
*
* This function provides access to the private CThread objects through the
* public interface of the class. To see a more detailed description of its
* features, see the documentation on the start() function of the CThread
* class.
* features, see the documentation on the CThread::start() function of the
* CThread class.
*
* This function throws a CThreadServerException in case of any error. See
* the corresponding documentation for a more detailed decription of this
* exception class.
*
* \param thread_id a null terminated string with the thread identifier. The
* identifier is stored internally in a different memeory location so that
* identifier is stored internally in a different memory location so that
* the parameter can be freed after calling this function. The identifier
* must not have any spaces or special characters, and must be unique.
*/
......@@ -262,15 +262,15 @@ class CThreadServer
*
* This function provides access to the private CThread objects through the
* public interface of the class. To see a more detailed description of its
* features, see the documentation on the end() function of the CThread
* class.
* features, see the documentation on the CThread::end() function of the
* CThread class.
*
* This function throws a CThreadServerException in case of any error. See
* the corresponding documentation for a more detailed decription of this
* exception class.
*
* \param thread_id a null terminated string with the thread identifier. The
* identifier is stored internally in a different memeory location so that
* identifier is stored internally in a different memory location so that
* the parameter can be freed after calling this function. The identifier
* must not have any spaces or special characters, and must be unique.
*/
......@@ -281,15 +281,15 @@ class CThreadServer
*
* This function provides access to the private CThread objects through the
* public interface of the class. To see a more detailed description of its
* features, see the documentation on the kill() function of the CThread
* class.
* features, see the documentation on the CThread::kill() function of the
* CThread class.
*
* This function throws a CThreadServerException in case of any error. See
* the corresponding documentation for a more detailed decription of this
* exception class.
*
* \param thread_id a null terminated string with the thread identifier. The
* identifier is stored internally in a different memeory location so that
* identifier is stored internally in a different memory location so that
* the parameter can be freed after calling this function. The identifier
* must not have any spaces or special characters, and must be unique.
*
......@@ -301,15 +301,15 @@ class CThreadServer
*
* This function provides access to the private CThread objects through the
* public interface of the class. To see a more detailed description of its
* features, see the documentation on the detach() function of the CThread
* class.
* features, see the documentation on the CThread::detach() function of the
* CThread class.
*
* This function throws a CThreadServerException in case of any error. See
* the corresponding documentation for a more detailed decription of this
* exception class.
*
* \param thread_id a null terminated string with the thread identifier. The
* identifier is stored internally in a different memeory location so that
* identifier is stored internally in a different memory location so that
* the parameter can be freed after calling this function. The identifier
* must not have any spaces or special characters, and must be unique.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment