]> sourceware.org Git - glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Tue, 7 Aug 2001 17:26:45 +0000 (17:26 +0000)
committerAndreas Jaeger <aj@suse.de>
Tue, 7 Aug 2001 17:26:45 +0000 (17:26 +0000)
2001-08-07  Andreas Jaeger  <aj@suse.de>

* iconv/gconv_charset.h (upstr): Add unused attribute to avoid
warning.

* libio/iopopen.c (_IO_new_proc_open): Fix typos, it's
_IO_MTSAFE_IO.
(_IO_new_proc_close): Likewise.
* libio/oldiopopen.c (_IO_old_proc_open): Likewise.
(_IO_old_proc_close): Likewise.

ChangeLog
libio/iopopen.c
libio/oldiopopen.c

index 170b83982a5acc4778e574e93c80a4e7a3ed5ac0..d63b8ec332b229fa63dc0f7d9843bb60d9fc150f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2001-08-07  Andreas Jaeger  <aj@suse.de>
+
+       * iconv/gconv_charset.h (upstr): Add unused attribute to avoid
+       warning.
+
+       * libio/iopopen.c (_IO_new_proc_open): Fix typos, it's
+       _IO_MTSAFE_IO.
+       (_IO_new_proc_close): Likewise.
+       * libio/oldiopopen.c (_IO_old_proc_open): Likewise.
+       (_IO_old_proc_close): Likewise.
+
 2001-08-06  Ulrich Drepper  <drepper@redhat.com>
 
        * manual/locale.texi: Add documentation of rpmatch.
index c0c16b20d8cb2baa821e04f5afe893172719ac2d..f4b65fd1de9203659f37c6c72ae465d5e45ef516 100644 (file)
@@ -182,13 +182,13 @@ _IO_new_proc_open (fp, command, mode)
   _IO_fileno (fp) = parent_end;
 
   /* Link into proc_file_chain. */
-#ifdef _IO_MTSFE_IO
+#ifdef _IO_MTSAFE_IO
   _IO_cleanup_region_start_noarg (unlock);
   _IO_lock_lock (proc_file_chain_lock);
 #endif
   ((_IO_proc_file *) fp)->next = proc_file_chain;
   proc_file_chain = (_IO_proc_file *) fp;
-#ifdef _IO_MTSFE_IO
+#ifdef _IO_MTSAFE_IO
   _IO_lock_unlock (proc_file_chain_lock);
   _IO_cleanup_region_end (0);
 #endif
@@ -247,7 +247,7 @@ _IO_new_proc_close (fp)
   int status = -1;
 
   /* Unlink from proc_file_chain. */
-#ifdef _IO_MTSFE_IO
+#ifdef _IO_MTSAFE_IO
   _IO_cleanup_region_start_noarg (unlock);
   _IO_lock_lock (proc_file_chain_lock);
 #endif
@@ -260,7 +260,7 @@ _IO_new_proc_close (fp)
          break;
        }
     }
-#ifdef _IO_MTSFE_IO
+#ifdef _IO_MTSAFE_IO
   _IO_lock_unlock (proc_file_chain_lock);
   _IO_cleanup_region_end (0);
 #endif
index d18a2a433864c6ac11faac039cc67d5907d64b9f..c00e942afdf71a77c1ff1b3f6b60c1c9516976a0 100644 (file)
@@ -183,13 +183,13 @@ _IO_old_proc_open (fp, command, mode)
   _IO_fileno (fp) = parent_end;
 
   /* Link into old_proc_file_chain. */
-#ifdef _IO_MTSFE_IO
+#ifdef _IO_MTSAFE_IO
   _IO_cleanup_region_start_noarg (unlock);
   _IO_lock_lock (proc_file_chain_lock);
 #endif
   ((_IO_proc_file *) fp)->next = old_proc_file_chain;
   old_proc_file_chain = (_IO_proc_file *) fp;
-#ifdef _IO_MTSFE_IO
+#ifdef _IO_MTSAFE_IO
   _IO_lock_unlock (proc_file_chain_lock);
   _IO_cleanup_region_end (0);
 #endif
@@ -247,7 +247,7 @@ _IO_old_proc_close (fp)
   int status = -1;
 
   /* Unlink from old_proc_file_chain. */
-#ifdef _IO_MTSFE_IO
+#ifdef _IO_MTSAFE_IO
   _IO_cleanup_region_start_noarg (unlock);
   _IO_lock_lock (proc_file_chain_lock);
 #endif
@@ -260,7 +260,7 @@ _IO_old_proc_close (fp)
          break;
        }
     }
-#ifdef _IO_MTSFE_IO
+#ifdef _IO_MTSAFE_IO
   _IO_lock_unlock (proc_file_chain_lock);
   _IO_cleanup_region_end (0);
 #endif
This page took 0.053096 seconds and 5 git commands to generate.