[Bf-committers] Blender 2.43 RC1

Hans Lambermont hans at lambermont.dyndns.org
Fri Dec 29 11:40:10 CET 2006


Ton Roosendaal wrote:

> I've had reactions in from Jean-Luc and DJ already via IRC. Let's  
> declare the RC1 date as 'now' then. :)

cmake building blender works fine, however when I try to run a game I
get this nice pthread problem :

    Fatal error 'can not create signal daemon thread!' at line 238 in file /usr/src/lib/libpthread/thread/thr_sig.c

Line 238 says:

 228 /* Utility function to create signal daemon thread */
 229 int
 230 _thr_start_sig_daemon(void)
 231 {
 232     pthread_attr_t attr;
 233     sigset_t sigset, oldset;
 234
 235     SIGFILLSET(sigset);
 236     pthread_sigmask(SIG_SETMASK, &sigset, &oldset);
 237     pthread_attr_init(&attr);
 238     pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
 239     attr->flags |= THR_SIGNAL_THREAD;
 240     /* sigmask will be inherited */
 241     if (pthread_create(&_thr_sig_daemon, &attr, sig_daemon, NULL))
 242         PANIC("can not create signal daemon thread!\n");
 243     pthread_attr_destroy(&attr);
 244     pthread_sigmask(SIG_SETMASK, &oldset, NULL);
 245     return (0);
 246 }

I hope this helps someone in debugging this ;-)

Hans


More information about the Bf-committers mailing list