about summary refs log tree commit diff
path: root/nptl/tst-key1.c
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gftg@linux.vnet.ibm.com>2016-10-31 22:09:12 -0200
committerGabriel F. T. Gomes <gftg@linux.vnet.ibm.com>2016-11-07 22:09:42 -0200
commite0c6851980806f2a51b37e3e37fc9a48420a4a83 (patch)
treef92bf9d475e48293155946e53dcef64a40f94c0c /nptl/tst-key1.c
parentd5b38790950533e80d1fc7c79cab4eacef626547 (diff)
downloadglibc-e0c6851980806f2a51b37e3e37fc9a48420a4a83.tar.gz
glibc-e0c6851980806f2a51b37e3e37fc9a48420a4a83.tar.xz
glibc-e0c6851980806f2a51b37e3e37fc9a48420a4a83.zip
Write messages to stdout and use write_message instead of write
Replaces calls to write on file descriptor 2 with calls to write_message,
which writes to STDOUT_FILENO (1) and properly deals with the return of
write.
Diffstat (limited to 'nptl/tst-key1.c')
-rw-r--r--nptl/tst-key1.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/nptl/tst-key1.c b/nptl/tst-key1.c
index 0ed17873bb..ac53729906 100644
--- a/nptl/tst-key1.c
+++ b/nptl/tst-key1.c
@@ -23,6 +23,11 @@
 #include <unistd.h>
 
 
+static int do_test (void);
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"
+
 int
 do_test (void)
 {
@@ -38,7 +43,7 @@ do_test (void)
   for (i = 0; i < max; ++i)
     if (pthread_key_create (&keys[i], NULL) != 0)
       {
-	write (2, "key_create failed\n", 18);
+	write_message ("key_create failed\n");
 	_exit (1);
       }
     else
@@ -82,7 +87,3 @@ do_test (void)
 
   return 0;
 }
-
-
-#define TEST_FUNCTION do_test ()
-#include "../test-skeleton.c"