(libretro-common) Fix sthread_isself() documentation

This commit is contained in:
Higor Eurípedes 2016-10-17 19:14:31 -03:00
parent bb2de710c5
commit 2109a13ce2
2 changed files with 1 additions and 11 deletions

View File

@ -78,11 +78,6 @@ void sthread_join(sthread_t *thread);
* sthread_isself:
* @thread : pointer to thread object
*
* Join with a terminated thread. Waits for the thread specified by
* @thread to terminate. If that thread has already terminated, then
* it will return immediately. The thread specified by @thread must
* be joinable.
*
* Returns: true (1) if calling thread is the specified thread
*/
bool sthread_isself(sthread_t *thread);

View File

@ -207,11 +207,6 @@ void sthread_join(sthread_t *thread)
* sthread_isself:
* @thread : pointer to thread object
*
* Join with a terminated thread. Waits for the thread specified by
* @thread to terminate. If that thread has already terminated, then
* it will return immediately. The thread specified by @thread must
* be joinable.
*
* Returns: true (1) if calling thread is the specified thread
*/
bool sthread_isself(sthread_t *thread)