DragonFly bugs List (threaded) for 2008-05
DragonFly BSD
DragonFly bugs List (threaded) for 2008-05
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

[issue990] lang/python21 problem


From: Hasso Tepper <sinknull@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 09 May 2008 08:20:35 -0000

Hasso Tepper <hasso@estpak.ee> added the comment:

The problem is not the PTHREAD_SCOPE_SYSTEM or even attr, but the first 
argument of the pthread_create() call. This trivial example runs fine:

#include <pthread.h>

void *foo(void *parm) { return NULL; }

int main() {
        pthread_t thread;

        pthread_create(&thread, NULL, foo, NULL);
        return 0;
}

But this one doesn't:

#include <pthread.h>

void *foo(void *parm) { return NULL; }

int main() {
        pthread_create(NULL, NULL, foo, NULL);
        return 0;
}

----------
priority:  -> bug
status: unread -> chatting

_____________________________________________________
DragonFly issue tracker <bugs@lists.dragonflybsd.org>
<https://bugs.dragonflybsd.org/issue990>
_____________________________________________________



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]