From 663954b004f8750ae8c6fbb86ee9f54c846ee095 Mon Sep 17 00:00:00 2001 From: Sebastian Wilhelmi Date: Mon, 9 Dec 2002 12:22:44 +0000 Subject: [PATCH] use 0 instead of $defattr, as it isn't defined anymore on platforms using 2002-12-09 Sebastian Wilhelmi * 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 | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-12 | 6 ++++++ ChangeLog.pre-2-2 | 6 ++++++ ChangeLog.pre-2-4 | 6 ++++++ ChangeLog.pre-2-6 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ configure.in | 2 +- 8 files changed, 43 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2bcf7ca9..6f1201ff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-12-09 Sebastian Wilhelmi + + * 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 * glib/gfileutils.c (g_file_test): Guard against diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 2bcf7ca9..6f1201ff 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2002-12-09 Sebastian Wilhelmi + + * 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 * glib/gfileutils.c (g_file_test): Guard against diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 2bcf7ca9..6f1201ff 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,9 @@ +2002-12-09 Sebastian Wilhelmi + + * 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 * glib/gfileutils.c (g_file_test): Guard against diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 2bcf7ca9..6f1201ff 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +2002-12-09 Sebastian Wilhelmi + + * 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 * glib/gfileutils.c (g_file_test): Guard against diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 2bcf7ca9..6f1201ff 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +2002-12-09 Sebastian Wilhelmi + + * 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 * glib/gfileutils.c (g_file_test): Guard against diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 2bcf7ca9..6f1201ff 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2002-12-09 Sebastian Wilhelmi + + * 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 * glib/gfileutils.c (g_file_test): Guard against diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 2bcf7ca9..6f1201ff 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2002-12-09 Sebastian Wilhelmi + + * 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 * glib/gfileutils.c (g_file_test): Guard against diff --git a/configure.in b/configure.in index c18344cb..c3ba3ae8 100644 --- a/configure.in +++ b/configure.in @@ -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); -- 2.34.1