rthreads: Fix documentation (void function doesn’t return)

This commit is contained in:
Emmanuel Gil Peyrot 2020-08-31 23:35:27 +02:00
parent f6064006d2
commit 917db3ecac
2 changed files with 0 additions and 4 deletions

View File

@ -87,8 +87,6 @@ int sthread_detach(sthread_t *thread);
* @thread to terminate. If that thread has already terminated, then
* it will return immediately. The thread specified by @thread must
* be joinable.
*
* Returns: 0 on success, otherwise it returns a non-zero error number.
*/
void sthread_join(sthread_t *thread);

View File

@ -270,8 +270,6 @@ int sthread_detach(sthread_t *thread)
* @thread to terminate. If that thread has already terminated, then
* it will return immediately. The thread specified by @thread must
* be joinable.
*
* Returns: 0 on success, otherwise it returns a non-zero error number.
*/
void sthread_join(sthread_t *thread)
{