]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 16 Apr 2004 22:28:50 +0000 (22:28 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 16 Apr 2004 22:28:50 +0000 (22:28 +0000)
* rt/tst-mqueue3.c (do_test): Cope with kernel without mq support.

ChangeLog
linuxthreads/ChangeLog
rt/tst-mqueue3.c

index 88c6c34e227a350cefb56b9d462dc0d02bb426c8..8c1a32149e70d7893143a2325c1bbeaa70cc0223 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2004-04-16  Ulrich Drepper  <drepper@redhat.com>
 
+       * rt/tst-mqueue3.c (do_test): Cope with kernel without mq support.
+
        * sysdeps/ieee754/bits/nan.h (__nan_union): Add __attribute_used__
        attribute to keep gcc quiet.
 
index 1a04804b9118e8ccf5bff25a65e69faa1639ada5..e0ab2c2bc73afebdc48277f61a2665f8a549baa3 100644 (file)
@@ -1,3 +1,7 @@
+2004-04-16  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Fix last patch.
+
 2004-04-13  Jakub Jelinek  <jakub@redhat.com>
 
        * sysdeps/unix/sysv/linux/mq_notify.c: Shut up GCC warning.
index 021a373e5eeb27616bac17caee4c401ef9bc9314..990e05728f83347b0e5980f883c835ab6163e5bf 100644 (file)
@@ -165,6 +165,12 @@ do_test (void)
   m = mq_open (mqname, O_CREAT | O_EXCL | O_RDWR, 0600, &attr);
   if (m == -1)
     {
+      if (errno == ENOSYS)
+       {
+         puts ("not implemented");
+         return 0;
+       }
+
       puts ("mq_open failed");
       return 1;
     }