Commit a2f98872 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Warning

parent dc74600c
...@@ -584,9 +584,11 @@ void vlc_cancel (vlc_thread_t thread_id) ...@@ -584,9 +584,11 @@ void vlc_cancel (vlc_thread_t thread_id)
} }
/** /**
* Waits for a thread to complete (if needed), and destroys it. * Waits for a thread to complete (if needed), then destroys it.
* This is a cancellation point; in case of cancellation, the join does _not_ * This is a cancellation point; in case of cancellation, the join does _not_
* occur. * occur.
* @warning
* A thread cannot join itself (normally VLC will abort if this is attempted).
* *
* @param handle thread handle * @param handle thread handle
* @param p_result [OUT] pointer to write the thread return value or NULL * @param p_result [OUT] pointer to write the thread return value or NULL
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment