Blame nptl/tst-initializers1.c

Packit 6c4009
/* Copyright (C) 2005-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Jakub Jelinek <jakub@redhat.com>, 2005.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
/* We test the code undef conditions outside of glibc.  */
Packit 6c4009
#undef _LIBC
Packit 6c4009
Packit 6c4009
#include <pthread.h>
Packit 6c4009
Packit 6c4009
pthread_mutex_t mtx_normal = PTHREAD_MUTEX_INITIALIZER;
Packit 6c4009
pthread_mutex_t mtx_recursive = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
Packit 6c4009
pthread_mutex_t mtx_errorchk = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP;
Packit 6c4009
pthread_mutex_t mtx_adaptive = PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP;
Packit 6c4009
pthread_rwlock_t rwl_normal = PTHREAD_RWLOCK_INITIALIZER;
Packit 6c4009
pthread_rwlock_t rwl_writer
Packit 6c4009
  = PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP;
Packit 6c4009
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
Packit 6c4009
Packit 6c4009
static int
Packit 6c4009
do_test (void)
Packit 6c4009
{
Packit 6c4009
  if (mtx_normal.__data.__kind != PTHREAD_MUTEX_TIMED_NP)
Packit 6c4009
    return 1;
Packit 6c4009
  if (mtx_recursive.__data.__kind != PTHREAD_MUTEX_RECURSIVE_NP)
Packit 6c4009
    return 2;
Packit 6c4009
  if (mtx_errorchk.__data.__kind != PTHREAD_MUTEX_ERRORCHECK_NP)
Packit 6c4009
    return 3;
Packit 6c4009
  if (mtx_adaptive.__data.__kind != PTHREAD_MUTEX_ADAPTIVE_NP)
Packit 6c4009
    return 4;
Packit 6c4009
  if (rwl_normal.__data.__flags != PTHREAD_RWLOCK_PREFER_READER_NP)
Packit 6c4009
    return 5;
Packit 6c4009
  if (rwl_writer.__data.__flags
Packit 6c4009
      != PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP)
Packit 6c4009
    return 6;
Packit 6c4009
  /* <libc-lock.h> __libc_rwlock_init definition for libc.so
Packit 6c4009
     relies on PTHREAD_RWLOCK_INITIALIZER being all zeros.  If
Packit 6c4009
     that ever changes, <libc-lock.h> needs updating.  */
Packit 6c4009
  size_t i;
Packit 6c4009
  for (i = 0; i < sizeof (rwl_normal); i++)
Packit 6c4009
    if (((char *) &rwl_normal)[i] != '\0')
Packit 6c4009
      return 7;
Packit 6c4009
  return 0;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
#define TEST_FUNCTION do_test ()
Packit 6c4009
#include "../test-skeleton.c"