]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
glibc 2003-09-02 Ulrich Drepper <drepper@redhat.com>
authorBruno Haible <bruno@clisp.org>
Wed, 11 May 2005 11:04:17 +0000 (11:04 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:12:34 +0000 (12:12 +0200)
gettext-runtime/intl/ChangeLog
gettext-runtime/intl/loadmsgcat.c

index da303d01436f5c0edd3eb5892e5f4540aa6adb84..450d5cfd7f587c746ef046366e2d5af4a2c73762 100644 (file)
@@ -1,3 +1,8 @@
+2003-09-02  Ulrich Drepper  <drepper@redhat.com>
+
+       * loadmsgcat.c: For _LIBC, call not cancelable versions of open, close,
+       and read.
+
 2003-06-18  Ulrich Drepper  <drepper@redhat.com>
 
        * localealias.c (read_alias_file): Determine whether line is read
index 30c4e011c24d298f79c57ee8fd317c99be1b44a4..3ab30a4b2bb8269dc555fd16143e1065847dda49 100644 (file)
@@ -91,6 +91,7 @@ char *alloca ();
 
 #ifdef _LIBC
 # include "../locale/localeinfo.h"
+# include <not-cancel.h>
 #endif
 
 /* Provide fallback values for macros that ought to be defined in <inttypes.h>.
@@ -457,9 +458,9 @@ char *alloca ();
 /* Rename the non ISO C functions.  This is required by the standard
    because some ISO C functions will require linking with this object
    file and the name space must not be polluted.  */
-# define open   __open
-# define close  __close
-# define read   __read
+# define open   open_not_cancel_2
+# define close  close_not_cancel_no_status
+# define read   read_not_cancel
 # define mmap   __mmap
 # define munmap __munmap
 #endif