5cf2b7440c
- Switch to options helpers - Pet portlint - Regenerate patches with `make makepatch`
13 lines
375 B
C
13 lines
375 B
C
--- mp.h.orig 2008-02-24 17:56:07 UTC
|
|
+++ mp.h
|
|
@@ -46,7 +46,9 @@ static void *__thread_create(int (*func)
|
|
|
|
if (pthread_attr_init(&attr)==0 &&
|
|
pthread_attr_setstacksize(&attr,stack_sz)==0 &&
|
|
+#if !defined(__DragonFly__)
|
|
pthread_attr_setscope(&attr,PTHREAD_SCOPE_SYSTEM)==0 &&
|
|
+#endif
|
|
pthread_create(&h,&attr,(void *(*)(void *))func,arg)==0 )
|
|
return (void *)h;
|
|
|