<br><br><div class="gmail_quote">2011/5/2 Rémi Denis-Courmont <span dir="ltr"><<a href="mailto:remi@remlab.net">remi@remlab.net</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
----- Message d'origine -----<br>
<div class="im">> It isn't perfect code wise, since I have NO clue how to create thread<br>
> without parameters using vlc thread functions.<br>
<br>
</div>That is impossible. If you do not need any parameter, the convention is to pass NULL. That being said, there is almost always need to pass a parameter, some kind of context.<br>
<br>
> kill_thread(id)<br>
<br>
Killing a thread makes no sense. Every thread has to be joined, before the plugin is unloaded and before its context data gets invalidated.<br></blockquote><div><br></div><div>Problem with join is that 50 seconds long sleep function I have since AFAIK join needs selfterminating threads. But in Win32 (according to MSDN) you are allowed to use ExitThread or similar function to terminate threads since VLC is C code. </div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<font color="#888888"><br>
--<br>
Rémi<br>
_______________________________________________<br>
vlc-devel mailing list<br>
To unsubscribe or modify your subscription options:<br>
<a href="http://mailman.videolan.org/listinfo/vlc-devel" target="_blank">http://mailman.videolan.org/listinfo/vlc-devel</a><br>
</font></blockquote></div><br>