use 0 instead of $defattr, as it isn't defined anymore on platforms using
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>
Mon, 9 Dec 2002 12:22:44 +0000 (12:22 +0000)
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>
Mon, 9 Dec 2002 12:22:44 +0000 (12:22 +0000)
2002-12-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: use 0 instead of $defattr, as it isn't defined
anymore on platforms using -pthread and linux, where this is used,
only uses 0 anyway and not "pthread_attr_default".

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in

index 2bcf7ca..6f1201f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-12-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: use 0 instead of $defattr, as it isn't defined
+       anymore on platforms using -pthread and linux, where this is used,
+       only uses 0 anyway and not "pthread_attr_default".
+
 Sun Dec  8 23:36:12 2002  Owen Taylor  <otaylor@redhat.com>
 
        * glib/gfileutils.c (g_file_test): Guard against
index 2bcf7ca..6f1201f 100644 (file)
@@ -1,3 +1,9 @@
+2002-12-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: use 0 instead of $defattr, as it isn't defined
+       anymore on platforms using -pthread and linux, where this is used,
+       only uses 0 anyway and not "pthread_attr_default".
+
 Sun Dec  8 23:36:12 2002  Owen Taylor  <otaylor@redhat.com>
 
        * glib/gfileutils.c (g_file_test): Guard against
index 2bcf7ca..6f1201f 100644 (file)
@@ -1,3 +1,9 @@
+2002-12-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: use 0 instead of $defattr, as it isn't defined
+       anymore on platforms using -pthread and linux, where this is used,
+       only uses 0 anyway and not "pthread_attr_default".
+
 Sun Dec  8 23:36:12 2002  Owen Taylor  <otaylor@redhat.com>
 
        * glib/gfileutils.c (g_file_test): Guard against
index 2bcf7ca..6f1201f 100644 (file)
@@ -1,3 +1,9 @@
+2002-12-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: use 0 instead of $defattr, as it isn't defined
+       anymore on platforms using -pthread and linux, where this is used,
+       only uses 0 anyway and not "pthread_attr_default".
+
 Sun Dec  8 23:36:12 2002  Owen Taylor  <otaylor@redhat.com>
 
        * glib/gfileutils.c (g_file_test): Guard against
index 2bcf7ca..6f1201f 100644 (file)
@@ -1,3 +1,9 @@
+2002-12-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: use 0 instead of $defattr, as it isn't defined
+       anymore on platforms using -pthread and linux, where this is used,
+       only uses 0 anyway and not "pthread_attr_default".
+
 Sun Dec  8 23:36:12 2002  Owen Taylor  <otaylor@redhat.com>
 
        * glib/gfileutils.c (g_file_test): Guard against
index 2bcf7ca..6f1201f 100644 (file)
@@ -1,3 +1,9 @@
+2002-12-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: use 0 instead of $defattr, as it isn't defined
+       anymore on platforms using -pthread and linux, where this is used,
+       only uses 0 anyway and not "pthread_attr_default".
+
 Sun Dec  8 23:36:12 2002  Owen Taylor  <otaylor@redhat.com>
 
        * glib/gfileutils.c (g_file_test): Guard against
index 2bcf7ca..6f1201f 100644 (file)
@@ -1,3 +1,9 @@
+2002-12-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: use 0 instead of $defattr, as it isn't defined
+       anymore on platforms using -pthread and linux, where this is used,
+       only uses 0 anyway and not "pthread_attr_default".
+
 Sun Dec  8 23:36:12 2002  Owen Taylor  <otaylor@redhat.com>
 
        * glib/gfileutils.c (g_file_test): Guard against
index c18344c..c3ba3ae 100644 (file)
@@ -1632,7 +1632,7 @@ void* func(void* data) {other_pid = getpid();}
 main()
 { pthread_t t; 
   void *ret;
-  pthread_create (&t, $defattr, func, NULL);
+  pthread_create (&t, 0, func, NULL);
   pthread_join (t, &ret);
   exit (getpid()==other_pid || 
        $posix_priority_min != $posix_priority_max);