2009/11/5 Nicolas Pitre <nico@xxxxxxxxxxx>: > On Thu, 5 Nov 2009, Andrzej K. Haczewski wrote: > >> +static unsigned __stdcall win32_start_routine(void *arg) >> +{ >> + pthread_t *thread = arg; >> + thread->value = thread->start_routine(thread->arg); >> + return 0; >> +} > > I suppose you could reuse thread->arg for both the argument and the > returned value to save a word. You're right! J6t committed already, what can I do now? > Why are you casting thread->handle here? Why not simply declaring it as > a HANDLE? Just to silence MSVC warnings. WaitForSingleObject requires HANDLE, _beginthreadex() returns uintptr_t. It's just a matter of where would I put cast ;). -- Andrzej -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html