2009/11/5 Johannes Sixt <j.sixt@xxxxxxxxxxxxx>: > Elsewhere we use _beginthreadex(). What's the difference? Oh my, I've just run through MSDN documentation and I'm wrongly using CreateThread. I should have used _beginthread from the start, because besides calling CreateThread it initializes local thread storage for global C-runtime variables (errno etc.), which CreateThread does not do. That could lead to very unpleasant consequences. I'll redo thread creation to use _beginthreadex(). Thanks for that question! > The pthread_cond_* functions are quite voluminous, but not performance > critical. Could you please move them to pthread.c as well? Ok, will do. -- 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