DragonFly bugs List (threaded) for 2008-05
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]
[issue990] lang/python21 problem
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]