mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
4e0b901601
This patch fixes -Waddress warnings in nptl/tst-mutex1.c from comparing the address of an object with NULL (ATTR may either be NULL, or the address of an object when included from other tests, and the warning arises in the latter case). A macro ATTR_NULL is defined alongside ATTR and used for the tests. Tested for x86_64. * nptl/tst-mutex1.c: Include <stdbool.h>. [!ATTR] (ATTR_NULL): New macro. (do_test): Test !ATTR_NULL instead of ATTR != NULL. * nptl/tst-mutexpi1.c (ATTR_NULL): New macro. * nptl/tst-mutexpp1.c (ATTR_NULL): New macro.
29 lines
478 B
C
29 lines
478 B
C
#include <pthread.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
static pthread_mutexattr_t a;
|
|
|
|
static void
|
|
prepare (void)
|
|
{
|
|
if (pthread_mutexattr_init (&a) != 0)
|
|
{
|
|
puts ("mutexattr_init failed");
|
|
exit (1);
|
|
}
|
|
|
|
if (pthread_mutexattr_setprotocol (&a, PTHREAD_PRIO_INHERIT) != 0)
|
|
{
|
|
puts ("mutexattr_setprotocol failed");
|
|
exit (1);
|
|
}
|
|
}
|
|
#define PREPARE(argc, argv) prepare ()
|
|
|
|
|
|
#define ATTR &a
|
|
#define ATTR_NULL false
|
|
#include "tst-mutex1.c"
|