]> sourceware.org Git - glibc.git/commitdiff
* manual/libc-texinfo.sh: Emit @set ADD-ON for each ADD-ON that
authorRoland McGrath <roland@gnu.org>
Tue, 10 Dec 2002 11:08:11 +0000 (11:08 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 10 Dec 2002 11:08:11 +0000 (11:08 +0000)
contributes a manual chapter.
* manual/signal.texi (Process Signal Mask): Use @ifset linuxthreads
around xref to it.

ChangeLog
manual/libc-texinfo.sh
manual/signal.texi

index 8106f16d190b12a67887456e40c314bd9904cb67..59682d729e0b8017ebe4fc8b22eb2834a1ca6f5c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2002-12-10  Roland McGrath  <roland@redhat.com>
 
+       * manual/libc-texinfo.sh: Emit @set ADD-ON for each ADD-ON that
+       contributes a manual chapter.
+       * manual/signal.texi (Process Signal Mask): Use @ifset linuxthreads
+       around xref to it.
+
        * sysdeps/unix/sysv/linux/dl-librecon.h (EXTRA_LD_ENVVARS): Refer to
        and move contents to ...
        (EXTRA_LD_ENVVARS_LINUX): ... this new macro.  Add break for nonmatch.
index 2e6b32d3f4900e0ae1cff02fee599526c436a7bb..79ac9773ee1c1f2705ec24c09cd0eccc725c324e 100644 (file)
@@ -28,6 +28,12 @@ collect_nodes () {
   $AWK -f tsort.awk | sed 's/_/ /g'
 }
 
+# Emit "@set ADD-ON" for each add-on contributing a manual chapter.
+for addon in $2; do
+  addon=`basename $addon .texi`
+  echo >&3 "@set $addon"
+done
+
 collect_nodes $1 | build_menu
 
 if [ -n "$2" ]; then
index 903062f3c689eb2294a308a15f942faf2373e8f0..2c06c6ca2d82d292c72bc3206d06222ae0513350 100644 (file)
@@ -2564,8 +2564,11 @@ The prototype for the @code{sigprocmask} function is in @file{signal.h}.
 Note that you must not use @code{sigprocmask} in multi-threaded processes,
 because each thread has its own signal mask and there is no single process
 signal mask. According to POSIX, the behavior of @code{sigprocmask} in a
-multi-threaded process is ``unspeficied''. Instead, use 
-@code{pthread_sigmask} (@pxref{Threads and Signal Handling}).
+multi-threaded process is ``unspeficied''.
+Instead, use @code{pthread_sigmask}.
+@ifset linuxthreads
+@xref{Threads and Signal Handling}.
+@end ifset
 
 @comment signal.h
 @comment POSIX.1
This page took 0.043335 seconds and 5 git commands to generate.