changeset 30325:4ce2ac70f815

Merge branch 'master' of ssh://haible@git.sv.gnu.org/srv/git/gnulib
author Bruno Haible <bruno@clisp.org>
date Mon, 13 Oct 2008 02:35:20 +0200
parents 1da689534334 (current diff) 91447d3bb98f (diff)
children 9de3c5453668
files
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/build-aux/texinfo.tex	Mon Oct 13 01:46:58 2008 +0200
+++ b/build-aux/texinfo.tex	Mon Oct 13 02:35:20 2008 +0200
@@ -3,7 +3,7 @@
 % Load plain if necessary, i.e., if running under initex.
 \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
 %
-\def\texinfoversion{2008-10-12.11}
+\def\texinfoversion{2008-10-12.17}
 %
 % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
 % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
@@ -3878,7 +3878,7 @@
     % The \closeout helps reduce unnecessary open files; the limit on the
     % Acorn RISC OS is a mere 16 files.
     \expandafter\closeout\csname#2indfile\endcsname
-    \expandafter\let\csname\donesynindex#2\endcsname = 1
+    \expandafter\let\csname donesynindex#2\endcsname = 1
   \fi
   % redefine \fooindfile:
   \expandafter\let\expandafter\temp\expandafter=\csname#3indfile\endcsname
--- a/lib/glthread/thread.h	Mon Oct 13 01:46:58 2008 +0200
+++ b/lib/glthread/thread.h	Mon Oct 13 02:35:20 2008 +0200
@@ -137,6 +137,9 @@
 
 /* -------------------------- gl_thread_t datatype -------------------------- */
 
+/* This choice of gl_thread_t assumes that
+     pthread_equal (a, b)  is equivalent to  ((a) == (b)).
+   This is the case on all platforms in use in 2008.  */
 typedef pthread_t gl_thread_t;
 # define glthread_create(THREADP, FUNC, ARG) \
     (pthread_in_use () ? pthread_create (THREADP, NULL, FUNC, ARG) : ENOSYS)