The thread start routine needs C linkage. This fixes a compilation error on Tru64/cxx.

[SVN r44427]
This commit is contained in:
Markus Schöpflin
2008-04-15 07:58:48 +00:00
parent 6fac146f52
commit f4ea4c2def

View File

@ -14,7 +14,7 @@
namespace boost_has_pthreads{
void* thread_proc(void* arg)
extern "C" void* thread_proc(void* arg)
{
return arg;
}