Blame elf/tst-dlopen-nodelete-reloc-mod13.cc

Packit Bot a917fd
/* Second module for NODELETE test defining a unique symbol (with DT_NEEDED).
Packit Bot a917fd
   Copyright (C) 2019 Free Software Foundation, Inc.
Packit Bot a917fd
   This file is part of the GNU C Library.
Packit Bot a917fd
Packit Bot a917fd
   The GNU C Library is free software; you can redistribute it and/or
Packit Bot a917fd
   modify it under the terms of the GNU Lesser General Public
Packit Bot a917fd
   License as published by the Free Software Foundation; either
Packit Bot a917fd
   version 2.1 of the License, or (at your option) any later version.
Packit Bot a917fd
Packit Bot a917fd
   The GNU C Library is distributed in the hope that it will be useful,
Packit Bot a917fd
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Bot a917fd
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Bot a917fd
   Lesser General Public License for more details.
Packit Bot a917fd
Packit Bot a917fd
   You should have received a copy of the GNU Lesser General Public
Packit Bot a917fd
   License along with the GNU C Library; if not, see
Packit Bot a917fd
   <https://www.gnu.org/licenses/>.  */
Packit Bot a917fd
Packit Bot a917fd
#include "tst-dlopen-nodelete-reloc.h"
Packit Bot a917fd
Packit Bot a917fd
#include <stdbool.h>
Packit Bot a917fd
#include <stdio.h>
Packit Bot a917fd
#include <unistd.h>
Packit Bot a917fd
Packit Bot a917fd
/* Just a flag here, not used for NODELETE processing.  */
Packit Bot a917fd
bool may_finalize_mod13 = false;
Packit Bot a917fd
Packit Bot a917fd
extern template struct unique_symbol<12>;
Packit Bot a917fd
Packit Bot a917fd
/* Trigger the creation of a unique symbol reference.  This should
Packit Bot a917fd
   cause tst-dlopen-nodelete-reloc-mod12.so to be marked as
Packit Bot a917fd
   NODELETE.  */
Packit Bot a917fd
int
Packit Bot a917fd
global_function_mod13 (void)
Packit Bot a917fd
{
Packit Bot a917fd
  return unique_symbol<12>::value;
Packit Bot a917fd
}
Packit Bot a917fd
Packit Bot a917fd
static void __attribute__ ((destructor))
Packit Bot a917fd
fini (void)
Packit Bot a917fd
{
Packit Bot a917fd
  if (!may_finalize_mod13)
Packit Bot a917fd
    {
Packit Bot a917fd
      puts ("error: tst-dlopen-nodelete-reloc-mod13.so destructor"
Packit Bot a917fd
            " called too early");
Packit Bot a917fd
      _exit (1);
Packit Bot a917fd
    }
Packit Bot a917fd
}