On Thu, 5 Nov 2009, Andrzej K. Haczewski wrote: > 2009/11/5 Nicolas Pitre : > > 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? Just post a replacement patch. > > 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 ;). Wonderful. One could wonder why Windows can't have coherent interfaces... Well, given that all existing usages in the tree (run-command.c and compat/mingw.c) already cast the _beginthreadex() return value instead, then that might be a good idea to follow the same model. Nicolas