about summary refs log tree commit diff
path: root/nptl/tst-mutex1.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-12-22 20:10:10 +0000
committerUlrich Drepper <drepper@redhat.com>2004-12-22 20:10:10 +0000
commita334319f6530564d22e775935d9c91663623a1b4 (patch)
treeb5877475619e4c938e98757d518bb1e9cbead751 /nptl/tst-mutex1.c
parent0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (diff)
downloadglibc-a334319f6530564d22e775935d9c91663623a1b4.tar.gz
glibc-a334319f6530564d22e775935d9c91663623a1b4.tar.xz
glibc-a334319f6530564d22e775935d9c91663623a1b4.zip
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
Diffstat (limited to 'nptl/tst-mutex1.c')
-rw-r--r--nptl/tst-mutex1.c26
1 files changed, 3 insertions, 23 deletions
diff --git a/nptl/tst-mutex1.c b/nptl/tst-mutex1.c
index 9453f04918..50b5ccaf0e 100644
--- a/nptl/tst-mutex1.c
+++ b/nptl/tst-mutex1.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+/* Copyright (C) 2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
 
@@ -19,12 +19,6 @@
 
 #include <pthread.h>
 #include <stdio.h>
-#include <errno.h>
-
-
-#ifndef ATTR
-# define ATTR NULL
-#endif
 
 
 static int
@@ -32,24 +26,12 @@ do_test (void)
 {
   pthread_mutex_t m;
 
-  int e = pthread_mutex_init (&m, ATTR);
-  if (ATTR != NULL && e == ENOTSUP)
-    {
-      puts ("cannot support selected type of mutexes");
-      return 0;
-    }
-  else if (e != 0)
+  if (pthread_mutex_init (&m, NULL) != 0)
     {
       puts ("mutex_init failed");
       return 1;
     }
 
-  if (ATTR != NULL && pthread_mutexattr_destroy (ATTR) != 0)
-    {
-      puts ("mutexattr_destroy failed");
-      return 1;
-    }
-
   if (pthread_mutex_lock (&m) != 0)
     {
       puts ("mutex_lock failed");
@@ -71,7 +53,5 @@ do_test (void)
   return 0;
 }
 
-#ifndef TEST_FUNCTION
-# define TEST_FUNCTION do_test ()
-#endif
+#define TEST_FUNCTION do_test ()
 #include "../test-skeleton.c"