Blame elf/tst-dlopen-nodelete-reloc-mod4.c

Packit Service f16287
/* Test propagation of NODELETE to an already-loaded object via relocation.
Packit Service f16287
   Intermediate helper module.
Packit Service f16287
   Copyright (C) 2019 Free Software Foundation, Inc.
Packit Service f16287
   This file is part of the GNU C Library.
Packit Service f16287
Packit Service f16287
   The GNU C Library is free software; you can redistribute it and/or
Packit Service f16287
   modify it under the terms of the GNU Lesser General Public
Packit Service f16287
   License as published by the Free Software Foundation; either
Packit Service f16287
   version 2.1 of the License, or (at your option) any later version.
Packit Service f16287
Packit Service f16287
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service f16287
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service f16287
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service f16287
   Lesser General Public License for more details.
Packit Service f16287
Packit Service f16287
   You should have received a copy of the GNU Lesser General Public
Packit Service f16287
   License along with the GNU C Library; if not, see
Packit Service f16287
   <https://www.gnu.org/licenses/>.  */
Packit Service f16287
Packit Service f16287
#include <stdbool.h>
Packit Service f16287
#include <stdio.h>
Packit Service f16287
#include <unistd.h>
Packit Service f16287
Packit Service f16287
/* Defined in tst-dlopen-nodelete-reloc-mod3.so.  The dependency is
Packit Service f16287
   expressed via DT_NEEDED.  */
Packit Service f16287
extern bool may_finalize_mod3;
Packit Service f16287
Packit Service f16287
static void __attribute__ ((destructor))
Packit Service f16287
fini (void)
Packit Service f16287
{
Packit Service f16287
  if (!may_finalize_mod3)
Packit Service f16287
    {
Packit Service f16287
      puts ("error: tst-dlopen-nodelete-reloc-mod4.so destructor"
Packit Service f16287
            " called too early");
Packit Service f16287
      _exit (1);
Packit Service f16287
    }
Packit Service f16287
}